Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Lara798 committed Oct 22, 2024
2 parents 6c24844 + b773916 commit ac5455e
Show file tree
Hide file tree
Showing 14 changed files with 5,587 additions and 9 deletions.
1,103 changes: 1,103 additions & 0 deletions experiments/DAI YU SYUAN/1_basics.html

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion experiments/Ksenia/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,18 @@
<style>

/* add your magic here */
body {
font-family: monospace;
font-style: oblique;
color: darkblue;
}

</style>

</head>
<body>
<body>


<main id="content" class="main-content ">
<article class="main-page-content" lang="en-US">
<header>
Expand Down
6 changes: 5 additions & 1 deletion experiments/Levi/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@

<style>

/* add your magic here */
body {
font-family: sans-serif;
font-size: 15px;
background-color: aquamarine;
}

</style>

Expand Down
1,105 changes: 1,105 additions & 0 deletions experiments/Tamara/1_basics.html

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion experiments/gregor/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@

<style>

/* add your magic here */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
body {
font-family: "Rubik";
}

</style>

Expand Down
35 changes: 34 additions & 1 deletion experiments/julian/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,40 @@

<style>

/* add your magic here */
h1 {
color: rgb(6, 255, 31)
;
}

/* unvisited link */
a:link {
color: rgb(6, 255, 31)
}

/* visited link */
a:visited {
color:rgb(0, 145, 15)
}

/* mouse over link */
a:hover {
color: hotpink;
}

/* selected link */
a:active {
color: rgb(250, 0, 125);
}
body {
font-family: sans-serif;
font-size: 16px;
color: aliceblue;
background-color: hsl(231, 100%, 17%);
}

section {
opacity: 1;
}

</style>

Expand Down
Loading

0 comments on commit ac5455e

Please sign in to comment.