-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (43 loc) · 818 Bytes
/
style.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
body, .terminal {
background-color: black;
font-family: monospace;
color: #efefef;
margin: 0px;
padding: 0px;
overflow-y: hidden;
}
#splashscreen {
position: fixed;
background-color: #772953;
height: 100vh;
width: 100vw;
font-family: sans-serif;
text-align: center;
padding-top: 10%;
transition: 1s all;
}
/* TABS / UI */
.tab-label {
text-transform: uppercase;
border-right: solid 1px #555;
padding-right: 4px;
padding-left: 4px;
}
.tab-label.active {
font-weight: bold;
background-color: #555;
}
#tab_1 td, #tab_2 td, #tab_3 td {
padding-right: 36px;
}
#tab_3 {
height: calc(100vh - 60px);
overflow-y: scroll;
}
#tab_4 {
height: calc(100vh - 80px);
overflow-y: scroll;
}
.mem_cell {
font-kerning: 24px;
}