Subversion Repositories ALCASAR

Rev

Rev 3028 | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
2817 rexy 1
h1 {
2
	font-family: "DejaVu Sans";
3
	font-size: 16pt;
4
	text-align: left;
5
	color: #666666;
6
}
7
 
8
h2 {
9
	font-family: "DejaVu Sans";
10
	font-size: 15pt;
11
	text-align: center;
12
	color: #666666;
13
}
14
 
15
h3 {
16
	font-family: "DejaVu Sans";
17
	font-size: 14pt;
18
	text-align: center;
19
	color: #666666;
20
}
21
 
22
:link, :visited, :link:hover, :visited:hover {
23
	font-family: "DejaVu Sans";
24
	font-size: small;
25
	color: #666666;
26
}
27
 
28
body, p, ul, li {
29
	font-family: "DejaVu Sans";
30
	font-size: small;
31
	color: #666666;
32
	background-color: #EFEFEF;
33
	text-align: justify;
34
}
35
 
36
th {
37
	font-family: "DejaVu Sans";
38
	font-size: small;
39
	text-align: center;
40
	color: #EFEFEF;
41
	background-color: #666666;
42
}
43
 
44
table {
45
	font-family: "DejaVu Sans";
46
	font-size: small;
47
	color: #666666;
48
	background-color: #EFEFEF;
49
}
50
 
51
.etiquette {
52
	font-family: "DejaVu Sans";
53
	font-size: small;
54
	text-align: right;
55
	color: #666666;
56
	background-color: #d0ddb0;
57
}
58
 
59
.hide-advanced-fields .advanced-field {
60
	display: none;
61
}
62
 
63
#login-time-calendar img {
64
	width: 30px;
65
	vertical-align: -9px;
66
	margin-left: 5px;
3174 rexy 67
}
2817 rexy 68
 
69
.schedule-rows td {
70
  width: 80px;
71
  height: 22px;
72
  margin: 3px;
73
  padding: 0;
74
  background-color: #B55;
75
  cursor: pointer;
76
}
77
 
78
.schedule-rows td:first-child {
79
  background-color: transparent;
80
  text-align: right;
81
  position: relative;
82
  top: -12px;
83
  font-family: 'Sans';
84
  font-size: 0.8em;
85
}
86
 
87
.schedule-rows td[data-selected],
88
.schedule-rows td[data-selecting] { background-color: #d0ddb0; }
89
.schedule-rows td[data-unselecting] { background-color: #B22; }
90
.schedule-rows td[data-disabled] { opacity: 0.55; }
91
.schedule-header tr th:first-child {
92
	background-color: transparent;
93
}
94
 
95
.panel {
96
	display: table;
97
	width: 100%;
98
	border-spacing: 0;
99
	border-collapse: collapse;
100
}
3174 rexy 101
 
2817 rexy 102
.panel .panel-header {
103
	display: table-caption;
104
	border-bottom: 3px solid #FFCC66;
105
	padding: 0;
106
	font-family: "DejaVu Sans";
107
	font-size: small;
108
	text-align: center;
109
	font-weight: bold;
110
	color: #EFEFEF;
111
	background-color: #666666;
112
}
3174 rexy 113
 
2817 rexy 114
.panel .panel-row {
115
	display: table-row;
116
	border: 1px solid black;
117
	overflow: auto;
118
}
3174 rexy 119
 
2817 rexy 120
.panel .panel-cell {
121
	display: table-cell;
122
	border: 1px solid black;
123
	overflow: auto;
124
}
3174 rexy 125
 
2817 rexy 126
.panel .panel-iframe
127
{
128
    height: 150vh;
129
    width: 100%;
130
    margin:  0px 0px 0px 0px  ;
131
    padding:  0px 0px 0px 0px  ;
132
    display: flex;
133
    border-left-style: solid;
134
    border-left-width: 1px;
135
    border-right-style: solid;
136
    border-top-style: solid;
137
    border-top-width: 1px;
138
    border-bottom-style: solid;
139
    border-bottom-width: 1px;
140
    border-right-width: 1px;
141
}
3028 rexy 142
 
143
.overlay
144
{
145
	height: 100%;
146
	width: 100%;
147
	display: none;
148
	position: fixed;
149
	z-index: 1;
150
	left: 0;
151
	top: 0;
152
	background-color: rgb(56, 25, 25);
153
	background-color: rgba(0,0,0, 0.9);
154
	overflow-x: hidden;
155
}
156
 
157
/* CSS Spinner */
158
.lds-spinner {
159
	display: flex;
160
	justify-content: center;
161
	align-items: center;
162
	height: 100%;
163
  }
164
 
165
  .lds-spinner div {
166
	transform-origin: 40px 40px;
167
	animation: lds-spinner 1.2s linear infinite;
168
  }
169
 
170
  .lds-spinner div:after {
171
	content: " ";
172
	display: block;
173
	position: absolute;
174
	top: 3px;
175
	left: 37px;
176
	width: 6px;
177
	height: 18px;
178
	border-radius: 20%;
179
	background: #fff;
180
  }
181
 
182
  .lds-spinner div:nth-child(1) {
183
	transform: rotate(0deg);
184
	animation-delay: -1.1s;
185
  }
186
 
187
  .lds-spinner div:nth-child(2) {
188
	transform: rotate(30deg);
189
	animation-delay: -1s;
190
  }
191
 
192
  .lds-spinner div:nth-child(3) {
193
	transform: rotate(60deg);
194
	animation-delay: -0.9s;
195
  }
196
 
197
  .lds-spinner div:nth-child(4) {
198
	transform: rotate(90deg);
199
	animation-delay: -0.8s;
200
  }
201
 
202
  .lds-spinner div:nth-child(5) {
203
	transform: rotate(120deg);
204
	animation-delay: -0.7s;
205
  }
206
 
207
  .lds-spinner div:nth-child(6) {
208
	transform: rotate(150deg);
209
	animation-delay: -0.6s;
210
  }
211
 
212
  .lds-spinner div:nth-child(7) {
213
	transform: rotate(180deg);
214
	animation-delay: -0.5s;
215
  }
216
 
217
  .lds-spinner div:nth-child(8) {
218
	transform: rotate(210deg);
219
	animation-delay: -0.4s;
220
  }
221
 
222
  .lds-spinner div:nth-child(9) {
223
	transform: rotate(240deg);
224
	animation-delay: -0.3s;
225
  }
226
 
227
  .lds-spinner div:nth-child(10) {
228
	transform: rotate(270deg);
229
	animation-delay: -0.2s;
230
  }
231
 
232
  .lds-spinner div:nth-child(11) {
233
	transform: rotate(300deg);
234
	animation-delay: -0.1s;
235
  }
236
 
237
  .lds-spinner div:nth-child(12) {
238
	transform: rotate(330deg);
239
	animation-delay: 0s;
240
  }
241
 
242
  @keyframes lds-spinner {
243
	0% {
244
	  opacity: 1;
245
	}
246
	100% {
247
	  opacity: 0;
248
	}
3174 rexy 249
  }