barebones/assets/styles/utils/_reset.scss

45 lines
669 B
SCSS
Raw Normal View History

2015-04-01 18:32:10 +02:00
* {
2019-01-08 11:52:31 +01:00
background-color: transparent;
border: 0;
box-sizing: border-box;
font: inherit;
margin: 0;
padding: 0;
2015-04-01 18:32:10 +02:00
}
html {
2019-01-08 11:52:31 +01:00
background-color: white;
font-size: 100%;
-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,
2015-04-01 18:32:10 +02:00
textarea,
button {
2019-01-08 11:52:31 +01:00
color: inherit;
display: inline-block;
2019-01-08 11:52:31 +01:00
&[disabled] {
cursor: not-allowed;
}
2015-04-01 18:32:10 +02:00
}
button {
2019-01-08 11:52:31 +01:00
cursor: pointer;
2015-04-01 18:32:10 +02:00
}
table {
2019-01-08 11:52:31 +01:00
border-collapse: collapse;
border-spacing: 0;
2019-01-08 11:52:31 +01:00
th,
td {
text-align: left;
}
}