Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kaheller committed Oct 22, 2024
2 parents 9a7fd88 + b8ababc commit 13d1dad
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 4 deletions.
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
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

0 comments on commit 13d1dad

Please sign in to comment.