101 lines
1.9 KiB
CSS
Executable File
101 lines
1.9 KiB
CSS
Executable File
@import url('/fonts/comissioner.ttf');
|
|
|
|
:root {
|
|
--background-light-3: #403939;
|
|
--background-light-2: #322d2d;
|
|
--background-light-1: #2b2525;
|
|
--background-light : #fff;
|
|
--background : #f00;
|
|
--background-dark : #000;
|
|
--text : #020202;
|
|
--text-light : #fafafa;
|
|
--text-hover : #fff;
|
|
--text-active : #d0d0d0;
|
|
--red-light-1 : #dc4343;
|
|
--red-light : #bf3737;
|
|
--red : #a43333;
|
|
--red-dark : #8d2a2a;
|
|
}
|
|
|
|
|
|
* {
|
|
text-decoration: none;
|
|
outline : none;
|
|
border : none;
|
|
color : var(--text);
|
|
font-family : 'Commissioner', Roboto, sans-serif;
|
|
transition : 0.1s ease-out;
|
|
}
|
|
|
|
.unselectable {
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select : none;
|
|
-khtml-user-select : none;
|
|
-moz-user-select : none;
|
|
-ms-user-select : none;
|
|
user-select : none;
|
|
}
|
|
|
|
a:hover {
|
|
color: var(--text-hover);
|
|
}
|
|
|
|
a:active {
|
|
color: var(--text-active);
|
|
}
|
|
|
|
body {
|
|
margin : 0;
|
|
padding-top: 20vh;
|
|
padding-bottom: 10vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color : var(--background);
|
|
}
|
|
|
|
aside {
|
|
z-index : 500;
|
|
}
|
|
|
|
header {
|
|
z-index : 5000;
|
|
width: 800px;
|
|
height: 100px;
|
|
margin: 0 auto;
|
|
display : flex;
|
|
border-radius: 3px 3px 0 0;
|
|
background-color: var(--background-dark);
|
|
}
|
|
|
|
header>h1 {
|
|
margin: auto;
|
|
font-size: 2.5rem;
|
|
color: var(--text-light);
|
|
}
|
|
|
|
main {
|
|
z-index : 1000;
|
|
width: 800px;
|
|
margin: 0 auto;
|
|
border-radius: 0 0 3px 3px;
|
|
background-color: var(--background-light)
|
|
}
|
|
|
|
main>ol {
|
|
margin: 50px 100px;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
main>ol>li {
|
|
padding-left: 40px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
main>ol>li::marker {
|
|
/* font-size: 1.3rem; */
|
|
}
|
|
|
|
footer {
|
|
z-index : 3000;
|
|
}
|