barebones/assets/sass/utils/_reset.scss

42 lines
614 B
SCSS
Raw Normal View History

2015-04-01 18:32:10 +02:00
* {
background-color: transparent;
border: 0;
box-sizing: border-box;
2015-04-09 17:32:19 +02:00
font: inherit;
2015-04-01 18:32:10 +02:00
margin: 0;
padding: 0;
}
html {
background-color: white;
font-size: 100%;
2015-04-09 17:32:19 +02:00
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
text-rendering: optimizeLegibility;
2015-04-01 18:32:10 +02:00
}
input,
select,
textarea,
button {
color: inherit;
display: inline-block;
2015-04-09 17:32:19 +02:00
&[disabled] {
cursor: not-allowed;
}
2015-04-01 18:32:10 +02:00
}
button {
cursor: pointer;
}
table {
border-collapse: collapse;
border-spacing: 0;
th,
td {
text-align: left;
}
}