Created
May 16, 2020 16:51
-
-
Save lastrafda/b68e8b5050753f78d34013770a2a3e07 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
html { | |
font-size: 62.5%; | |
--header1: calc(2rem + 1vw); | |
--header2: calc(3.5rem + 1vw); | |
--header3: calc(3rem + 1vw); | |
--header4: calc(2.4rem + 1vw); | |
--text: calc(1.5rem + 1vw); | |
--big-text: calc(2.4rem + 1vw); | |
--special-color: rgb(153, 51, 255) | |
--background-color: rgb(65, 65, 65) | |
--gray-text: rgb(82, 82, 82); | |
} | |
h1{ | |
font-size: var(--header1); | |
} | |
li, | |
button, | |
label, | |
input, | |
p{ | |
font-size: var(--text); | |
} | |
h2{ | |
font-size: var(--header2); | |
} | |
h3{ | |
font-size: var(--header3); | |
} | |
h4, | |
h5{ | |
font-size: var(--header4); | |
} | |
.flex { | |
display: flex; | |
flex-direction: column; | |
justify-content: center; | |
align-items: center; | |
} | |
ul { | |
list-style: none; | |
} | |
a { | |
text-decoration: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment