mirror of
https://github.com/GuerillaStudio/now-playing
synced 2024-11-09 16:51:53 +00:00
49 lines
567 B
SCSS
49 lines
567 B
SCSS
|
/* ----------------------------------------------------------- */
|
||
|
/* == reset */
|
||
|
/* ----------------------------------------------------------- */
|
||
|
|
||
|
html {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
*,
|
||
|
*:after,
|
||
|
*:before {
|
||
|
box-sizing: inherit;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
img,
|
||
|
table,
|
||
|
td,
|
||
|
blockquote,
|
||
|
code,
|
||
|
pre,
|
||
|
textarea,
|
||
|
input,
|
||
|
video,
|
||
|
svg {
|
||
|
max-width: 100%;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
height: auto;
|
||
|
border-style: none;
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
|
||
|
/* fix input no style on Safari */
|
||
|
input[type="search"] {
|
||
|
-webkit-appearance: textfield;
|
||
|
}
|
||
|
|
||
|
button,
|
||
|
input,
|
||
|
select,
|
||
|
textarea {
|
||
|
font: inherit;
|
||
|
}
|