hensei-web/styles/globals.scss

50 lines
827 B
SCSS

@import '~meyer-reset-scss';
html {
background: $background-color;
font-size: 62.5%;
padding: $unit * 2;
}
body {
-webkit-font-smoothing: antialiased;
font-family: system-ui, -apple-system, Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 1.4rem;
&.no-scroll {
overflow: hidden;
}
}
a {
text-decoration: none;
}
button, input {
font-family: system-ui, -apple-system, Helvetica Neue, Helvetica, Arial, sans-serif;
}
h1, h2, h3, p {
color: $grey-00;
}
h1 {
font-size: 2.1rem;
font-weight: $medium;
text-align: center;
}
#Content {
display: flex;
flex-direction: column;
gap: $unit * 3;
margin-top: $unit * 3;
min-width: 752px;
@media (max-width: $medium-screen) {
min-width: auto;
width: 100%;
}
}