blob: 614852d3f2bcde3c62a12c0f2962b398e86c62bb (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
.terminalWindow {
display: block;
align-self: center;
margin: auto;
user-select: none;
cursor: default;
overflow: hidden;
box-shadow: 5px 5px 20px #444444;
}
.terminalHeader {
font-family: monospace;
background: #cccccc;
color: #444444;
height: 30px;
line-height: 30px;
padding-left: 10px;
border-top-left-radius: 7px;
border-top-right-radius: 7px;
}
.terminalBody {
font-family: monospace;
text-align: center;
background-color: #333333;
color: #eeeeee;
padding: 10px;
height: 100%;
}
.segfault {
text-align: left;
}
.subTitle {
margin-top: 20px;
}
.homeBtn {
margin-top: 10px;
padding: 5px;
display: inline-block;
border: 1px solid #eeeeee;
color: #eeeeee;
text-decoration: none;
cursor: pointer;
transition: all 200ms;
&:hover,
&:active {
background: #eeeeee;
color: #333333;
}
}
|