-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathminidark.css
101 lines (85 loc) · 1.26 KB
/
minidark.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
* {
font-family:sans-serif;
}
body {
background-color:black;
}
p {
color:white;
}
#chosenmission {
font-size:18px;
font-weight: bold;
color:#cc0000;
}
#themeswitch {
position:absolute;
bottom:5px;
right:5px;
font-size:10px;
}
#resultsection {
line-height:1.2;
border: none;
padding: 0;
margin: 0;
}
#resultsection p {
margin-top: 1px;
margin-bottom: 1px;
}
#filters {
color:white;
border: none;
padding-left: 0;
padding-top: 0;
display:none;
}
#info {
color: green;
padding-top: 15px;
}
.bluetext {
margin: 0;
padding: 0;
color: #00ccff;
display: inline;
}
.redtext {
margin: 0;
padding: 0;
color: red;
display: inline;
}
.extras {
margin: 0;
padding: 0;
color: #00ccff;
}
.nappi {
display: inline;
}
/* Tooltip container */
.tooltip {
position: relative;
display: inline-block;
}
/* Tooltip text */
.tooltip .tooltiptext {
visibility: hidden;
width: 200px;
background-color: black;
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
/* Position the tooltip text - see examples below! */
position: absolute;
z-index: 1;
top: -5px;
left: 105%;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
visibility: visible;
}