Lidarr/frontend/src/Styles/scaffolding.css

46 lines
612 B
CSS
Raw Normal View History

2017-10-07 06:21:06 +00:00
/* stylelint-disable */
2017-09-04 02:20:56 +00:00
* {
box-sizing: border-box;
}
2017-10-07 06:21:06 +00:00
*::before,
*::after {
2017-09-04 02:20:56 +00:00
box-sizing: border-box;
}
*:focus {
outline: none;
}
2017-10-07 06:21:06 +00:00
/* stylelint-enable */
2017-09-04 02:20:56 +00:00
html,
body {
color: #515253;
2017-10-07 06:21:06 +00:00
font-family: 'Roboto', 'open sans', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
2017-09-04 02:20:56 +00:00
}
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;
}