lbry-desktop/src/renderer/scss/_reset.scss

80 lines
798 B
SCSS
Raw Normal View History

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
select,
textarea,
p,
blockquote,
th,
td,
iframe {
margin: 0;
padding: 0;
}
:focus {
2017-04-09 17:06:23 +02:00
outline: 0;
}
2017-04-10 14:32:40 +02:00
input::-webkit-search-cancel-button {
/* Remove default */
-webkit-appearance: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
fieldset,
img,
iframe {
border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: normal;
}
ol,
ul {
list-style-position: inside;
> li {
list-style-position: inside;
}
}
input,
textarea,
select {
font-family: inherit;
font-size: inherit;
font-weight: inherit;
2017-04-09 17:06:23 +02:00
border: 0 none;
}
img {
2018-03-26 23:32:43 +02:00
width: auto;
height: auto;
vertical-align: middle;
-ms-interpolation-mode: bicubic;
}
a {
color: inherit;
text-decoration: none;
}