Last active
June 3, 2022 01:38
-
-
Save thonma/3fa19ca611f92845938641c4b577676f to your computer and use it in GitHub Desktop.
template_css
This file contains hidden or 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; | |
color: inherit; | |
font-size: inherit; | |
font-family: inherit; | |
} | |
*::before, | |
*::after { | |
box-sizing: border-box; | |
} | |
html { | |
font-size: 16px; | |
overflow-y: scroll; | |
height: 100%; | |
} | |
body { | |
font-family: Meiryo; | |
color: #333333; | |
height: 100%; | |
-webkit-font-smoothing: antialiased; | |
} | |
h1 { | |
font-size: 32px; | |
} | |
h2 { | |
font-size: 28.8px; | |
} | |
h3 { | |
font-size: 25.6px; | |
} | |
small { | |
font-size: 12.8px; | |
} | |
img, | |
label { | |
display: block; | |
} | |
button { | |
cursor: pointer; | |
} | |
table { | |
border-collapse: collapse; | |
} | |
::placeholder { | |
color: unset; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment