-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (47 loc) · 983 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
51
52
53
54
55
/* no mobile browser font witchcraft */
html, body {
text-size-adjust: none;
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
-ms-text-size-adjust: none;
height: 100%;
}
a[href] {
color: #66d9ef;
}
.window_container {
/* background-color: rgb(23, 32, 42, 0.75); */
background-color: black;
border: 3px solid #17202a;
border-radius: 6px;
box-sizing: border-box;
margin-top: 20px;
}
.window_top {
background-color: #212f3d;
box-sizing: border-box;
padding: 5px;
}
.window_title {
left: 50%;
position: absolute;
transform: translateX(-50%);
font-weight: bold;
}
.window_dot {
border-radius: 50%;
box-sizing: border-box;
display: inline-block;
height: 12px;
margin-right: 10px;
width: 12px;
}
.bg-success {
background-color: #9fef00 !important;
}
.bg-warning {
background-color: #ffaf00 !important;
}
.bg-danger {
background-color: #ff3e3e !important;
}