openreplay/frontend/app/styles/reset.css
2021-05-01 15:12:01 +05:30

50 lines
725 B
CSS

* {
margin: 0;
padding: 0;
border-radius: 0;
text-decoration: none;
outline: none;
}
body, html {
height: 100%;
background: $gray-lightest;
font-family: 'Roboto', 'ArialMT', 'Arial';
font-size: 14px;
font-weight: 400;
color: $gray-darkest;
}
input, button {
background: none;
border: none;
border: solid thin transparent;
}
button {
font-weight: 400;
}
textarea:focus,
input:focus {
border: solid thin $teal !important;
}
body ::-webkit-scrollbar {
width: 2px;
height: 2px;
}
h1, h2, h3, h4, h5 {
font-family: 'Roboto', 'ArialMT', 'Arial';
font-weight: 500;
}
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
button:focus {
outline: none;
}