33 lines
682 B
CSS
33 lines
682 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: "Google Sans", sans-serif;
|
|
font-optical-sizing: auto;
|
|
font-style: normal;
|
|
font-variation-settings: "GRAD" 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body, #__nuxt {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
|
|
#app {
|
|
width: 100vw;
|
|
min-height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
input, textarea, select {
|
|
width: 100%;
|
|
height: 2.5rem;
|
|
font-size: 0.9rem;
|
|
padding: 0.25rem;
|
|
outline: none;
|
|
border: 1px solid #989898;
|
|
} |