Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
iremguld committed Oct 22, 2024
2 parents 5122a7f + 14e96b2 commit 242e8e4
Show file tree
Hide file tree
Showing 13 changed files with 2,390 additions and 14 deletions.
4 changes: 3 additions & 1 deletion experiments/3melie/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@

<style>

/* add your magic here */
body{
background-color: rgb(67, 102, 126);
}

</style>

Expand Down
24 changes: 22 additions & 2 deletions experiments/Benedikt/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

h1 {
font-family: monospace;
font-size: 40px;
font-size: 60px;
font-weight: 200;
}
h2 {
Expand All @@ -23,9 +23,29 @@
section {
background-color: #e9e9e9;
padding: 10px;
border: 1px solid rgb(148, 148, 148);
padding-left: 20px;
border: 1px solid rgb(203, 203, 203);
border-radius: 10px;
margin: 20px;
opacity: .5;
transition: all .5s ease;
}

section:hover{
opacity: 1;
transform: scale(1.01);
background-color: #fafafa;
border: 1px solid #ffffff;
}

a {
color: black;
}

a:hover{
color: #29d190;
}

</style>

</head>
Expand Down
30 changes: 28 additions & 2 deletions experiments/LaraR/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,37 @@

<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;
border: 1ch;
}

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
Loading

0 comments on commit 242e8e4

Please sign in to comment.