-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
181 lines (151 loc) · 3.57 KB
/
styles.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
.backNav {
background-color:yellow;
font-size:1.1em;
text-align:center;
cursor:pointer;
text-decoration:none;
width:95%;
margin: 0 auto;
border-bottom:2px outset LightBlue;
display:block;
padding: 12px 24px;
font-weight: bold;
}
.backNav:hover {
background-color: gold;
color: DarkBlue;
}
#ApiOptionsForm .api-option-label {
display: block;
margin-bottom: 3px;
}
#ApiOptionsForm fieldset {
border: 1px solid lightgray;
padding: 6px 12px;
border-radius: 6px;
}
#ApiOptionsForm legend {
float: none;
width: auto;
margin-left: 3px;
padding: 0 6px;
font-weight: bold;
font-size: 1.1em;
border: 1px solid lightgray;
border-radius: 3px;
}
#LitCalTable {
width:90%;
margin:30px auto;
/*border:1px solid Blue;
border-radius: 6px;*/
padding:10px;
/*background:LightBlue;*/
background: white;
/*border-collapse: separate;*/
border-collapse: collapse;
border-spacing: 1px;
}
#LitCalTable caption {
caption-side: top;
text-align: center;
}
#LitCalTable colgroup .col2 {
width: 10%;
}
#LitCalTable td {
padding: 4px 6px;
border: 1px dashed lightgray;
}
#LitCalTable td.rotate {
width: 1.5em;
white-space: nowrap;
text-align: center;
vertical-align: middle;
}
#LitCalTable td.rotate div{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 1.8em;
font-weight:bold;
writing-mode: vertical-rl;
transform: rotate(180.0deg);
}
#LitCalTable .monthHeader {
text-align: center;
background-color: #ECA;
color: darkslateblue;
font-weight: bold;
}
#LitCalTable .dateEntry {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size:.8em;
}
#LitCalTable .eventDetails {
color: #BD752F;
}
#LitCalTable .liturgicalGrade {
text-align: center;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#LitCalTable .liturgicalGrade.liturgicalGrade_0 {
visibility: hidden;
}
#LitCalTable .liturgicalGrade_0, #LitCalTable .liturgicalGrade_1, #LitCalTable .liturgicalGrade_2 {
font-size: .9em;
}
#LitCalTable .liturgicalGrade_3 {
font-size: .9em;
}
#LitCalTable .liturgicalGrade_4, #LitCalTable .liturgicalGrade_5 {
font-size: 1em;
}
#LitCalTable .liturgicalGrade_6, #LitCalTable .liturgicalGrade_7 {
font-size: 1em;
font-weight: bold;
}
.liturgicalGrade.liturgicalGrade_0, .liturgicalGrade.liturgicalGrade_1, .liturgicalGrade.liturgicalGrade_2 {
font-style: italic;
color: gray;
}
#LitCalTable td.purple {
background-color: plum;
color: black;
}
#LitCalTable td.EASTER_TRIDUUM.purple {
background-color: palevioletred;
color: white;
}
#LitCalTable td.white {
background-color: whitesmoke;
color: black;
}
#LitCalTable td.red {
background-color: lightpink;
color: black;
}
#LitCalTable td.pink {
background-color: mistyrose;
color: black;
}
#LitCalTable td.green {
background-color: lightgreen;
color: black;
}
#LitCalMessages {
width: 75%;
margin:30px auto;
border:1px solid darkslategray;
padding:10px;
background: lightgray;
}
#LitCalMessages th {
font-size: 1.3em;
padding: 10px;
}
#LitCalMessages td {
padding: 5px;
border-bottom: 1px solid White;
}
#LitCalMessages td:first-child {
border-right: 1px groove White;
}