barebones/assets/scss/utilities/_reset.scss

63 lines
724 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-02 11:45:33 +02:00
-webkit-font-smoothing: antialiased;
2015-04-01 18:32:10 +02:00
margin: 0;
padding: 0;
text-rendering: optimizeLegibility;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
display: block;
}
html {
background-color: white;
font-size: 100%;
min-height: 100%;
text-size-adjust: 100%;
}
input,
select,
textarea,
button {
color: inherit;
display: inline-block;
font: inherit;
}
button {
cursor: pointer;
&[disabled] {
2015-04-02 11:45:33 +02:00
cursor: not-allowed;
2015-04-01 18:32:10 +02:00
}
}
table {
border-collapse: collapse;
border-spacing: 0;
th,
td {
text-align: left;
}
}
b,
strong,
th {
font-weight: bold;
}