Subversion Repositories ALCASAR

Rev

Rev 2817 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 2817 Rev 3028
Line 46... Line 46...
46
	font-size: small;
46
	font-size: small;
47
	color: #666666;
47
	color: #666666;
48
	background-color: #EFEFEF;
48
	background-color: #EFEFEF;
49
}
49
}
50
 
50
 
51
/*style des étiquettes*/
51
/*style des �tiquettes*/
52
.etiquette {
52
.etiquette {
53
	font-family: "DejaVu Sans";
53
	font-family: "DejaVu Sans";
54
	font-size: small;
54
	font-size: small;
55
	text-align: right;
55
	text-align: right;
56
	color: #666666;
56
	color: #666666;
Line 139... Line 139...
139
    border-top-width: 1px;
139
    border-top-width: 1px;
140
    border-bottom-style: solid;
140
    border-bottom-style: solid;
141
    border-bottom-width: 1px;
141
    border-bottom-width: 1px;
142
    border-right-width: 1px;
142
    border-right-width: 1px;
143
}
143
}
-
 
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
  }
144
 
253