55 lines
774 B
CSS
55 lines
774 B
CSS
/* stylelint-disable */
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*:focus {
|
|
outline: none;
|
|
}
|
|
/* stylelint-enable */
|
|
|
|
html,
|
|
body {
|
|
color: var(--textColor);
|
|
font-family: 'Roboto', 'open sans', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
|
|
}
|
|
|
|
body {
|
|
font-size: 14px;
|
|
line-height: 1.528571429; /* 20/14 */
|
|
}
|
|
|
|
/* Override normalize */
|
|
|
|
button,
|
|
input,
|
|
optgroup,
|
|
select,
|
|
textarea {
|
|
margin: 0;
|
|
font-size: inherit;
|
|
font-family: inherit;
|
|
line-height: 1.528571429; /* 20/14 */
|
|
}
|
|
|
|
/* Better defaults for unordererd lists */
|
|
|
|
ul {
|
|
margin: 0;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) {
|
|
input,
|
|
optgroup,
|
|
select,
|
|
textarea {
|
|
font-size: 16px;
|
|
}
|
|
}
|