Skip to content

Instantly share code, notes, and snippets.

@thonma
Last active June 3, 2022 01:38
Show Gist options
  • Save thonma/3fa19ca611f92845938641c4b577676f to your computer and use it in GitHub Desktop.
Save thonma/3fa19ca611f92845938641c4b577676f to your computer and use it in GitHub Desktop.
template_css
* {
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