It works?

This commit is contained in:
Aaron Gutierrez
2021-12-27 12:43:37 -08:00
parent 70a9025c61
commit c6bfaef8b8
3 changed files with 157 additions and 0 deletions

37
tuner.css Normal file
View File

@@ -0,0 +1,37 @@
body {
align-items: center;
justify-content: center;
background: green;
color: white;
display: flex;
flex-direction: column;
font-size: 48px;
height: 100vh;
margin: 0;
overflow: hidden;
padding: 0;
width: 100vw;
transition: background 0.25s ease-in;
}
body.flat {
background: blue;
}
body.sharp {
background: red;
}
h1, h2 {
margin: 0;
}
h1 {
font-size: 96px;
}
h2 {
font-size: 72px;
}