lecoffre-front/src/front/index.scss
2023-04-14 14:02:42 +02:00

43 lines
587 B
SCSS

@import "@Themes/constants.scss";
@import "@Themes/fonts.scss";
@import "@Themes/variables.scss";
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
background-size: inherit;
background-position: top center;
font-size: 0px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
input {
font-size: 18px;
}
::placeholder {
font-size: 14px;
}
*:focus {
outline: none;
}
a,
a:visited {
color: initial;
text-decoration: none !important;
opacity: 1;
transition: opacity 0.15s ease-in-out;
will-change: opacity;
}
a:hover {
opacity: 0.9;
}