-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (38 loc) · 856 Bytes
/
style.css
File metadata and controls
45 lines (38 loc) · 856 Bytes
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
/**** Reset ****/
*,
::before,
::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/**** body ****/
body {
width: 100%;
height: 100vh;
/*display: flex;
justify-content: center;
align-items: center;*/
display: grid;
place-items: center;
background-color: #fffffe;
}
/**** paragraphe ****/
.loader {
width: fit-content;
font-size: 80px;
font-family: monospace;
font-weight: bold;
text-transform: uppercase;
color: #0000;
-webkit-text-stroke: 1px #000;
background: conic-gradient(#000 0 0) 0/0% 100% text no-repeat;
/* 10lettres + 3 points de suspension mais on part de zéro 0 pour aller à 13 = 14 */
animation: loading 2s steps(14, jump-none) infinite;
}
/**** Animation loading ****/
@keyframes loading {
to {
background-size: 100% 100%;
}
}