Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
joy91de committed Oct 22, 2024
2 parents df92152 + 5557c56 commit ebf5dd1
Show file tree
Hide file tree
Showing 6 changed files with 1,210 additions and 6 deletions.
10 changes: 10 additions & 0 deletions experiments/Benedikt/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,16 @@
section:hover{
opacity: 1;
transform: scale(1.01);
background-color: #fafafa;
border: 1px solid #ffffff;
}

a {
color: black;
}

a:hover{
color: #29d190;
}

</style>
Expand Down
29 changes: 27 additions & 2 deletions experiments/LaraR/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,36 @@

<style>

h1{ font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: larger;
body{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 15px;
background-color: antiquewhite;

}


h1{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 24px;
color: brown;
}

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

section:hover{
opacity: 1;
background-color: antiquewhite;
transform: scale(1.1);

}


</style>

</head>
Expand Down
16 changes: 15 additions & 1 deletion experiments/Levi/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,21 @@
body {
font-family: sans-serif;
font-size: 15px;
background-color: rgb(224, 228, 255);
background-color: hsl(0, 0%, 75%);
}

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

section:hover {
opacity: 1;
background-color: white;
transform: scale(1.1);
}

</style>
Expand Down
20 changes: 18 additions & 2 deletions experiments/Luisa/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,32 @@

<style>

/* add your magic here */
body {
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
background-color:palevioletred
}

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

section:hover {
opacity: 1;
background-color:beige;
transform: scale(1.1);
}
</style>

</head>
<body>
<main id="content" class="main-content ">
<article class="main-page-content" lang="en-US">
<header>
<h1>The box model</h1>
<h1>The box model or how I like to call it "I dont know whats going on"</h1>
</header>
<div class="section-content">
<p>
Expand Down
23 changes: 22 additions & 1 deletion experiments/kaheller/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,34 @@
<!-- Source: https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/The_box_model -->

<style>
h1 {font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;}
h1, h2 {font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;}
h1 {
font: size 66px;
margin: 0;
color: lightcoral;
}
h1 span.phon {
font-size: 24px;
font-weight: bold;
}

body{
background-color: cadetblue;
}

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

section:hover {
opacity: 1;
background-color: darkolivegreen ;
transform: scale(80px);
}
/* */

</style>
Expand Down
Loading

0 comments on commit ebf5dd1

Please sign in to comment.