Subversion Repositories ALCASAR

Rev

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