-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdark-theme.css
99 lines (83 loc) · 1.37 KB
/
dark-theme.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
/* Base styles */
body {
background-color: #70CBD6;
color: #000000;
font-family: sans-serif;
margin: 0;
padding: 0;
}
h1 {
font-size: 1.2em;
color: #000000;
}
/* Choose section */
#choose {
width: 100%;
text-align: right;
background-color: #005C6D;
margin: 0 0 1em;
padding: 1em;
}
#choose label {
color: #aaa;
}
#choose.big {
border: 1px solid #555;
padding: 2em 0;
text-align: center;
font-size: 1.2em;
}
#choose.big #source {
font-size: 1.5em;
color: #eee;
}
#chooseOption .row {
border-bottom: 1px dotted #444;
padding: 0.5em 0;
}
#chooseOption input,
#chooseOption select {
font-size: 0.9em;
color: #ddd;
}
/* View mode styles */
body.view #chooseOption {
display: none;
}
body.view h1 {
float: left;
font-size: 1em;
margin: 0.1em 0.5em;
color: #eee;
}
/* Print styles */
@media print {
.noprint {
display: none;
}
body {
margin: 1.5cm;
padding: 0;
background-color: #fff;
color: #000;
}
#f div.desc {
border: 1px solid #ddd !important;
margin: 0 0 0.5em !important;
padding: 0.3em !important;
font-size: 0.9em;
background-color: #eee;
}
#f div.info {
display: none;
}
#f {
page-break-inside: avoid;
}
svg {
height: 900px;
}
@page {
margin: 0;
}
}