File size: 1,069 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
box-sizing: border-box;
font-weight: 300;
}
body {
background-color: var(--theme-background);
color: var(--font-color);
font-family: sans-serif,"Segoe UI", Tahoma, Geneva, Verdana;
padding: 0;
margin: 0;
overflow-y: scroll;
display: flex;
flex-direction: column;
min-height: 100vh;
scroll-behavior: smooth;
text-rendering: optimizeSpeed;
}
a {
text-decoration: none;
color: inherit;
}
button {
font-family: inherit;
font-size: 100%;
line-height: 1.5;
margin: 0;
padding: 0;
border-style: none;
outline: none;
background: none;
cursor: pointer;
}
ul {
list-style: none;
}
.overlay {
background-color: black;
opacity: 0.5;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 300;
}
.main-container {
height: 100vh;
width: 100%;
max-width: 100vw;
margin: 0 auto;
padding: 1rem 3rem;
display: grid;
grid-template-columns: 240px 2fr 1fr;
grid-template-rows: 1fr;
gap: 1rem 1rem;
}
|