Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentina Lafchieva committed Oct 22, 2024
2 parents 4da53ef + ae19bdc commit b6c9e86
Show file tree
Hide file tree
Showing 8 changed files with 4,472 additions and 2 deletions.
10 changes: 10 additions & 0 deletions experiments/Benedikt/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,16 @@
color: #29d190;
}

img {
max-width: 100%;
height: auto;
transition: all .5s ease;
}

img:hover {
transform: scale(1.01);
}

</style>

</head>
Expand Down
1 change: 1 addition & 0 deletions experiments/LaraR/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
transition: all 1s ease;
width: 500px;
margin: auto;
border: 1ch;
}

section:hover{
Expand Down
1,106 changes: 1,106 additions & 0 deletions experiments/Lisa/1_basics.html

Large diffs are not rendered by default.

1,102 changes: 1,102 additions & 0 deletions experiments/irem/1_basics.html

Large diffs are not rendered by default.

1,110 changes: 1,110 additions & 0 deletions experiments/joy/1_basics.html

Large diffs are not rendered by default.

14 changes: 12 additions & 2 deletions experiments/kaheller/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,29 @@

body{
background-color: cadetblue;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: medium;
}

section{
opacity: .5;
padding: 20px;
transition: all 1s ease;
width: 400px;
width: 500%;
margin:auto
}

:link {
color: indigo;

}
:visited {
color: brown;
}
section:hover {
opacity: 1;
background-color: darkolivegreen ;
background-color: rgb(232, 214, 255) ;
background-blend-mode: hard-light;
transform: scale(80px);
}
/* */
Expand Down
13 changes: 13 additions & 0 deletions experiments/marian/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,19 @@
background-color: hsl(0, 0%, 75%);
}

:link {
color: green;
}

:visited {
color: darkgreen;
}

img {
max-width: 100%;
height: auto;
}

section {
opacity: .5;
padding: 20px;
Expand Down
Loading

0 comments on commit b6c9e86

Please sign in to comment.