-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathshared.css
113 lines (90 loc) · 1.44 KB
/
shared.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
107
108
109
110
111
112
113
h1 {
font-family: "Arial Black";
font-size: 20pt;
}
.subtitle {
font-size: 12pt;
font-style: italic;
}
body {
font-family: "Arial";
font-size: 10pt;
margin: 10px;
padding: 0 20px;
background-color: #ffffff;
}
.main_link {
float: right;
border: 1px solid black;
border-radius: 4px;
font-size: 9pt;
padding: 2px 4px;
text-decoration: none;
background-color: #e0e0ff;
}
/* Options table */
#options {
display: none;
margin: 20px;
}
#optionstoggle {
font-size: 10pt;
}
.opttable {
border: 1px solid black;
}
.optcell {
vertical-align: top;
padding: 0 10px;
}
.opttitle {
font-weight: bold;
}
input[type=checkbox]:disabled+label {
color: #a0a0a0;
}
.showfieldoption {
font-weight: normal;
padding: 0 5px 0 5px;
display: inline-block;
min-width: 90px;
text-align: center;
}
/* Event table */
.empty {
background-color: #ffffff;
}
.subheader {
font-size: 10pt;
}
.keycell {
padding: 0 5px 0 5px;
}
.modOff {
color: #ffd0d0;
}
.modOn {
color: green;
}
.undef {
color: #a0a0a0;
}
#output tr:hover, tr.highlight {
background-color: #e0e0e0;
}
/* Common event highlighting */
.event_hilight {
border: 1px solid #404040;
border-radius: 4px;
padding: 0 3px 0 3px;
margin-left: 3px;
}
/* Fix for black background in Fullscreen (Chrome). */
html {
background-color: #ffffff;
}
*:fullscreen, *:-webkit-full-screen, *:-moz-full-screen, *:-ms-fullscreen {
background-color: rgba(255,255,255,0);
width: 100%;
height: 100%;
}