barebones/scss/generic/_reset.scss

11 lines
204 B
SCSS
Raw Normal View History

2014-12-01 13:26:25 +01:00
* {
2014-03-31 17:19:42 +02:00
border: 0;
2014-12-01 13:26:25 +01:00
box-sizing: border-box;
2014-03-31 17:19:42 +02:00
font-size: 100%;
2014-12-01 13:26:25 +01:00
font-smoothing: antialiased;
2014-03-31 17:19:42 +02:00
font-style: normal;
font-weight: normal;
2014-12-01 13:26:25 +01:00
margin: 0;
padding: 0;
text-rendering: optimizeLegibility;
}