116 lines
1.8 KiB
SCSS
116 lines
1.8 KiB
SCSS
body {
|
|
margin: 0;
|
|
font-family: Inter;
|
|
background-color: #121212;
|
|
}
|
|
|
|
header {
|
|
position: fixed;
|
|
display: flex;
|
|
width: 100%;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
background-color: #1f1f1f;
|
|
box-shadow: 1px 7px 5px -3px rgba(0, 0, 0, 0.35);
|
|
|
|
img {
|
|
margin: 8px 8px 8px 24px;
|
|
}
|
|
h1 {
|
|
margin: 8px 24px 8px 0px;
|
|
font-size: 20px;
|
|
color: #fff;
|
|
}
|
|
|
|
a {
|
|
margin: 8px 4px 8px 4px;
|
|
padding: 12px 18px 12px 18px;
|
|
border-radius: 4px;
|
|
font-size: 16px;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
&:hover {
|
|
background-color: #2d2d2d;
|
|
}
|
|
&:active {
|
|
background-color: #363636;
|
|
}
|
|
}
|
|
}
|
|
|
|
section {
|
|
max-width: 1280px;
|
|
margin: 6px auto 6px auto;
|
|
color: #fff;
|
|
h2 {
|
|
font-size: 36px;
|
|
margin: 32px 0px 0px 0px;
|
|
}
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
text-align: left;
|
|
overflow-x: scroll;
|
|
img {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
width: 32px;
|
|
&#h {
|
|
width: 18px;
|
|
}
|
|
}
|
|
th {
|
|
background-color: #242424;
|
|
font-weight: bold;
|
|
padding: 12px;
|
|
}
|
|
td {
|
|
background-color: #1d1d1d;
|
|
padding: 12px;
|
|
}
|
|
}
|
|
|
|
ul li {
|
|
list-style-type: square;
|
|
img {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
width: 32px;
|
|
}
|
|
}
|
|
|
|
#madebythundiverter {
|
|
width: 100%;
|
|
margin-top: 32px;
|
|
padding: 12px 0px 12px 0px;
|
|
background-color: #1f4e79;
|
|
color: #fff;
|
|
font-size: 90%;
|
|
text-align: center;
|
|
a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* SCROLLBAR */
|
|
::-webkit-scrollbar {
|
|
width: 16px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: none;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: #212121;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #242424;
|
|
}
|
|
::-webkit-scrollbar-thumb:active {
|
|
background: #2c2c2c;
|
|
}
|