-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
52 lines (45 loc) · 907 Bytes
/
index.css
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
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300;400;500;600;700;800;900&display=swap");
* {
font-family: "Source Code Pro", monospace;
}
.scrollbar {
scrollbar-color: #777 #0000;
flex-grow: 1;
margin: 4em;
width: 90vh !important;
height: 100%;
display: inline-block;
margin: 0;
}
.scrollbar *::-webkit-scrollbar {
height: 6px;
width: 6px;
background-color: #0000;
}
.scrollbar *::-webkit-scrollbar-thumb {
border-radius: 3px;
height: 6px;
width: 6px;
background: #777;
}
.scrollbar *::-webkit-scrollbar-thumb:hover {
background: #555;
}
body {
margin: 0;
height: 100%;
background: black;
color: white;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
main {
display: flex;
flex-direction: row;
justify-content: space-between;
margin: 0;
height: 100%;
}