barebones/scss/generic/_reset.scss

13 lines
238 B
SCSS
Raw Normal View History

2014-12-01 13:26:25 +01:00
* {
2015-02-12 15:14:13 +01:00
background-color: transparent;
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;
2015-02-12 15:14:13 +01:00
}