75 lines
1.4 KiB
CSS
75 lines
1.4 KiB
CSS
/* GENERAL */
|
|
:root {
|
|
--border-header-footer: 3px rgba(255, 255, 255, .7) solid;
|
|
--background-color: #181818;
|
|
--text-color: rgb(222, 222, 222);
|
|
--important: #ffd800;
|
|
}
|
|
html {
|
|
line-height: initial;
|
|
}
|
|
body {
|
|
background-color: var(--background-color);
|
|
}
|
|
#__next {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-flow: column wrap;
|
|
background-color: var(--background-color);
|
|
color: var(--text-color);
|
|
font-family: 'Montserrat', sans-serif;
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
padding-top: 99px; /* Height of the Header */
|
|
}
|
|
p {
|
|
font-size: 18px;
|
|
line-height: 1.9;
|
|
}
|
|
h2 {
|
|
font-size: 1.8em;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* CONTENT */
|
|
.content {
|
|
flex-grow: 1;
|
|
display: flex;
|
|
}
|
|
.centeredContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
/* UTILITIES */
|
|
.text-center {
|
|
text-align: center;
|
|
word-break: break-word;
|
|
}
|
|
.justify-content-center {
|
|
justify-content: center;
|
|
}
|
|
.align-items-center {
|
|
align-items: center;
|
|
}
|
|
a, .important {
|
|
color: var(--important);
|
|
text-decoration: none;
|
|
}
|
|
.form-control {
|
|
display: block;
|
|
height: calc(1.5em + .75rem + 2px);
|
|
padding: .375rem .75rem;
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.5;
|
|
color: #495057;
|
|
background-color: #fff;
|
|
background-clip: padding-box;
|
|
border: 1px solid #ced4da;
|
|
border-radius: .5em;
|
|
} |