mirror of
https://github.com/YouHaveTrouble/GuildMaster.git
synced 2026-05-12 06:26:59 +00:00
79 lines
1.1 KiB
SCSS
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%;
|
|
}
|