Files
GuildMaster/src/assets/main.scss
T
2024-11-21 20:56:20 +01:00

79 lines
1.1 KiB
SCSS

* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: system-ui, sans-serif;
font-weight: normal;
vertical-align: baseline;
overflow-wrap: break-word;
-webkit-font-smoothing: antialiased;
}
body {
line-height: 1.5;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
button {
border: none;
background: none;
outline: none;
font-size: inherit;
}
button:focus-visible {
outline: 2px solid black;
}
input {
border: none;
outline: none;
}
input:focus-visible {
outline: 2px solid black;
}
img, picture, video, canvas, svg {
display: block;
max-width: 100%;
}
body {
margin: 0;
padding: 0;
min-height: 100vh;
font-family: 'EB Garamond', serif;
overflow-y: scroll;
user-select: none;
background-color: rgb(19, 16, 14);
background-blend-mode: darken;
background-repeat: repeat;
display: flex;
flex-direction: column;
align-items: center;
}
main {
max-width: 69rem;
display: flex;
flex-direction: column;
align-items: center;
}
#app {
width: 100%;
}