Skip to content

Commit

Permalink
Update 1_basics.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Lara798 committed Oct 22, 2024
1 parent ac5455e commit 59bf423
Showing 1 changed file with 27 additions and 2 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

0 comments on commit 59bf423

Please sign in to comment.