This repository has been archived by the owner on Apr 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgce-style.css
executable file
·219 lines (172 loc) · 4.33 KB
/
gce-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
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/**
* Public facing CSS file
*
* @package GCE
* @author Phil Derksen <pderksen@gmail.com>, Nick Young <mycorpweb@gmail.com>
* @license GPL-2.0+
* @copyright 2014 Phil Derksen
*/
/* Base line-height for all views & tooltip */
.gce-page-grid,
.gce-page-list,
.gce-widget-grid,
.gce-widget-list,
.gce-event-info {
line-height: 1.5;
}
/* Month & list titles for all views */
.gce-month-title,
.gce-list-title {
font-weight: bold;
padding-bottom: 5px;
}
/* Event titles with shaded background for all views */
.gce-list-event,
.gce-tooltip-event {
background-color: #ddd;
padding: 0 5px;
}
/* PAGE GRID */
.gce-page-grid .gce-calendar .gce-caption{ /* Caption at top of calendar */
color:#333333;
text-align:center;
}
.gce-page-grid .gce-calendar{ /* Main calendar table */
width:100%;
border-collapse:collapse;
border:0px solid #CCCCCC;
color:#CCCCCC;
}
.gce-page-grid .gce-calendar th{ /* Day headings (S, M etc.) */
border:0px solid #CCCCCC;
text-align:center;
width:14.29%;
padding:0;
}
.gce-page-grid .gce-calendar td{ /* Day table cells */
border:0px solid #CCCCCC;
text-align:center;
height:80px;
vertical-align:middle;
padding:0;
}
.gce-page-grid .gce-calendar .gce-has-events{ /* Table cells with events */
background:#333333;
cursor:pointer;
}
.gce-page-grid .gce-calendar .gce-event-info{ /* Event information */
display:none; /* Important! */
}
.gce-page-grid .gce-calendar .gce-day-number{ /* Day number span */
font-size:2em;
}
.gce-page-grid .gce-calendar .gce-today{ /* Table cell that represents today */
background-color:#DDDDDD;
color: black;
}
.gce-page-grid .gce-calendar th abbr{ /* Day letter abbreviation */
border-bottom:none;
}
/* PAGE LIST */
.gce-page-list .gce-feed {
padding-bottom: 10px;
}
.gce-page-list .gce-list p{ /* Each piece of information in the list */
margin:0;
}
.gce-page-list .gce-list p span,
.gce-page-list .gce-list div span{ /* The text displayed before each piece of info, 'Starts:' for example */
color:#999999;
}
/* WIDGET GRID */
.gce-widget-grid .gce-calendar .gce-caption{
text-align:center;
}
.gce-widget-grid .gce-calendar{ /* Main calendar table */
width:100%;
border:1px solid #CCCCCC;
border-collapse:collapse;
}
.gce-widget-grid .gce-calendar th{ /* Day headings (S, M etc.) */
width:14.29%;
border:1px solid #CCCCCC;
text-align:center;
}
.gce-widget-grid .gce-calendar td{ /* Day table cells */
color:#CCCCCC;
width:14.29%;
border:1px solid #CCCCCC;
text-align:center;
}
.gce-widget-grid .gce-calendar .gce-has-events{ /* Table cells with events */
cursor:pointer;
color:#666666;
}
.gce-widget-grid .gce-calendar .gce-today{ /* Table cell that represents today */
background-color:#DDDDDD;
}
.gce-widget-grid .gce-calendar .gce-event-info{ /* Event information */
display:none; /* Important! */
}
.gce-widget-grid .gce-calendar th abbr{ /* Day name abbreviations */
border-bottom:none;
}
/* WIDGET LIST */
.gce-widget-list .gce-list p{ /* Each piece of information in the list */
margin:0;
}
.gce-widget-list .gce-list p span,
.gce-widget-list .gce-list div span{ /* The text displayed before each piece of info, 'Starts:' for example */
color:#999999;
}
/* TOOLTIP */
.gce-event-info{ /* Tooltip container */
background-color:#FFFFFF;
}
.gce-event-info .gce-tooltip-title{ /* 'Events on...' text */
margin:5px;
font-weight:bold;
font-size:1.2em;
}
.gce-event-info ul{ /* Events list */
padding:0;
margin:5px;
list-style-type:none;
}
.gce-event-info ul li{ /* Event list item */
margin:10px 0 0 0;
}
.gce-event-info ul li p{ /* Each piece of information */
margin:0;
}
.gce-event-info ul li p span,
.gce-event-info ul li div span{ /* The text displayed before each piece of info, 'Starts:' for example */
color:#999999;
}
/** Calendar navigation bar, Prev/Next links & month title. **/
.gce-navbar {
width: 100%;
text-align: center;
clear: both;
overflow: hidden;
}
.gce-next,
.gce-prev {
white-space: nowrap;
}
.gce-prev {
float: left;
}
.gce-next {
float: right;
}
.gce-month-title {
display: inline-block;
margin: 0 auto;
white-space: nowrap;
color: white;
}
/* Grouped List */
.gce-list-grouped .gce-feed {
margin-left: 5%;
}