-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
106 lines (86 loc) · 1.43 KB
/
styles.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&display=swap');
body {
background: black;
color: #F0E8DE;
font-family: 'Fira Code', monospace;
font-weight: 400;
}
#bg {
position: fixed;
z-index: 1;
top: 0;
left: 0;
min-width: 100%;
min-height: 100%;
}
.main {
z-index: 5;
width: 80%;
height: 80%;
background: black;
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
border: 0.5vw solid #868B8D;
font-size: 2vw;
}
.bar {
height: 5%;
width: 100%;
border-bottom: 0.5vw solid #868B8D;
}
.content {
padding: 2vw;
height: 80%;
width: 95%;
overflow-y: scroll;
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.prompt-cbs {
color:#55B179;
font-weight: 600;
}
.prompt-home {
color:#00AAA1;
font-weight: 600;
}
.prompt-shell {
font-weight: 600;
}
.red {
color:#AC363F;
}
.other-red {
color:#F1767D;
}
a {
color: #003A6A;
text-decoration: none;
}
a:hover {
color: #003A6A;
text-decoration: underline;
}
a:visited {
color: #003A6A;
}
.blink {
animation: blink-animation 0.5s steps(5, start) infinite;
-webkit-animation: blink-animation 0.5s steps(5, start) infinite;
}
@keyframes blink-animation {
to {
visibility: hidden;
}
}
@-webkit-keyframes blink-animation {
to {
visibility: hidden;
}
}