André Wahlberg a1b078f418 Add misc CSS
2020-11-27 17:23:25 +01:00

35 lines
566 B
CSS

@font-face {
font-family: 'Roboto';
src: url('fonts/roboto-regular.ttf') format('truetype'); /* Safari, Android, iOS */
}
@font-face {
font-family: 'Roboto Light';
src: url('fonts/roboto-light.ttf') format('truetype'); /* Safari, Android, iOS */
}
* {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
outline: none;
}
html, body, #root, #app {
width: 100%;
height: 100%;
}
#root {
overflow: hidden;
}
button {
background: none;
border: none;
}
.hidden {
opacity: 0;
pointer-events: none;
}