You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
558 B
45 lines
558 B
html {
|
|
font-size: @root-font-size;
|
|
}
|
|
|
|
body {
|
|
padding: 0;
|
|
font-size: 1rem;
|
|
font-weight: normal;
|
|
letter-spacing: 0.02rem;
|
|
text-align: center;
|
|
color: @text;
|
|
}
|
|
|
|
|
|
button, input, textarea {
|
|
font-family: inherit;
|
|
outline: none;
|
|
}
|
|
|
|
textarea {
|
|
resize: none;
|
|
}
|
|
|
|
@supports (appearance: none) {
|
|
textarea, button, input {
|
|
appearance: none;
|
|
}
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
padding-top: 0;
|
|
margin-top: 0;
|
|
padding-bottom: 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 1.2rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.2rem;
|
|
margin-bottom: .8rem;
|
|
}
|
|
|