blob: a848474c051195a8d1717e85c4b86c718d2bfa3e (
plain)
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
|
html {
height: 100%;
}
body {
width: 100%;
height: auto;
min-height: 35rem;
background-color: #1a1e23;
background-image: linear-gradient(to bottom, rgba(1,1,1,.35) 0%, rgba(1,1,1,.55) 90%, rgba(26, 30, 35, 0.8) 100%), url("/img/world-bg.jpg");
background-position: center top;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
color: #e2e8f0;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #1a1e23;
}
::-webkit-scrollbar-thumb {
background: #2b313b;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #2f363f;
}
|