-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.css
executable file
·168 lines (131 loc) · 3.21 KB
/
default.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
body {
color: black; /* global text color */
background-color: white; /* global font color */
font-family: sans-serif; /* global font face */
}
th { /* table headers */
font-weight: bold;
text-align: center;
}
td { /* all table cells */
vertical-align: top;
}
a:link { /* unvisited links */
}
a:visited { /* visited links */
}
a:active { /* clicked links */
}
a:hover { /* links with the mouse over them */
}
.bodytable { /* main layout table */
width: 100%;
border: 1px solid black;
}
.bodytable td { /* cells of main layout table */
border-collapse: collapse;
}
.admin_sidebar { /* sidebar in administrative section */
width: 200px;
border-right: 1px dashed black;
padding-right: 4px;
}
.sidebar { /* sidebar in main section */
width: 200px;
border-right: 1px dashed black;
}
.sidebar td { /* cells of sidebar */
border-bottom: 1px dashed black;
padding-bottom: 5px;
padding-top: 5px;
}
.navtable { /* table containing main content with nav buttons */
border-collapse: collapse;
border: 0px;
cell-padding: 0px;
}
.calendar_panel { /* cell containing the mini-calendar */
text-align: center;
}
.embedded_calendar { /* calendar when not in sidebar */
width: 200px;
}
.mini_calendar_nav_box { /* table containing nav buttons for mini-calendar */
border-collapse: collapse;
border: 0px;
cell-padding: 0px;
}
.calendar { /* calendar view and mini-calendar */
text-align: left;
font-size: small;
width: 100%;
border: 2px outset gray;
border-collapse: collapse;
}
.calendar th { /* weekday headings in calendar */
text-align: center;
border: 0px;
}
.calendar td { /* cells in calendar */
border: 1px solid black;
}
.calendar td td { /* formatting inside cells in browse.php */
border: 0px;
}
.big_calendar td { /* specific to the calendar in calendar.php */
border: 1px solid black;
text-align: center;
}
.normal_day { /* a normal day in the calendar */
background-color: #ffffff;
}
.today { /* a highlighted day in the calendar */
background-color: #ffff99;
}
.off { /* a cell in the calendar that doesn't represent a day */
background-color: #999999;
}
.divider { /* a line below certain sections */
border-bottom: 1px dashed black;
}
.top_divider { /* a line above certain sections */
border-top: 1px dashed black;
}
.comicpanel { /* the cell in which the comic is displayed */
text-align: center;
width: 910px;
}
.databox { /* any box asking for input in the administrative section */
border: 1px inset gray;
}
.nav { /* navigation buttons like "Back" and "Forward" */
font-weight: bold;
}
.shoutout { /* the cell containing the shoutout */
font-style: italic;
text-align: center;
}
.commentary { /* the cell containing commentary */
font-style: italic;
text-align: center;
}
.comic_title { /* the cell containing the title of a particular comic strip */
font-weight: bold;
padding-top: 5px;
}
.links { /* applies to all of links.php */
}
.tooltip { /* applies to any text that has a tooltip */
border-bottom:1px dotted #226622;
}
.powered_by { /* applies to the "Powered by..." bar at the bottom of the page */
text-align: center;
font-size: small;
border: 1px solid gray;
}
.noborder { /* used to erase borders */
border: none;
}
.noborder td {
border: none;
}