Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
benexh committed Oct 22, 2024
2 parents 95f2011 + 58c1cf4 commit 27d390c
Showing 1 changed file with 34 additions and 6 deletions.
40 changes: 34 additions & 6 deletions experiments/valentina/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,53 @@
<!-- Source: https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/The_box_model -->

<style>
header {text-align: center}
header {
text-align: center;
font-size: 26px;
}
body {
font-family: trebuchet;
font-size: 18px;
color: #000000;
background-color: #fff9f1;
color: #512A3D;
background-color: #FDEBC4;
padding: 20px;
}
h2, h3 {text-align: center;}

section {
opacity: 1;
background-color: white;
width: 600px;
opacity: .5;
padding: 65px;
transition: all 1s ease;
width: 500px;
margin: auto;
}

section:hover {
opacity: 1;
font-size: 18px;
color: #FDEBC4;
background-color: #512A3D;
transform: scale(1.05);
}
pre {
margin-left: -160px;
}

img {
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
height: 100%;
}

:link {
color: #fed681;
}

:visited {
color: #ffae00;
}
/* add your magic here */

</style>
Expand Down

0 comments on commit 27d390c

Please sign in to comment.