-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
111 lines (91 loc) · 1.62 KB
/
Copy pathstyles.css
File metadata and controls
111 lines (91 loc) · 1.62 KB
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
*,
::before,
::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
height: 100vh;
}
.accueil {
height: 100%;
width: 100%;
background: url(img/fond.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
display: flex;
justify-content: center;
align-items: center;
}
.accueil h1 {
font-size: 120px;
margin-bottom: 450px;
}
/* loader */
.loader {
position: absolute;
width: 100%;
height: 100%;
background: #000;
display: flex;
justify-content: center;
align-items: center;
}
.lettre {
color: #484848;
font-size: 80px;
letter-spacing: 15px;
margin-bottom: 150px;
animation: flash 1.2s linear infinite;
}
@keyframes flash {
0% {
color: #fff900;
text-shadow: 0 0 7px #fff900;
}
90% {
color: #484848;
text-shadow: none;
}
100% {
color: #fff900;
text-shadow: 0 0 7px #fff900;
}
}
.lettre:nth-child(1) {
animation-delay: 0.1s;
}
.lettre:nth-child(2) {
animation-delay: 0.2s;
}
.lettre:nth-child(3) {
animation-delay: 0.3s;
}
.lettre:nth-child(4) {
animation-delay: 0.4s;
}
.lettre:nth-child(5) {
animation-delay: 0.5s;
}
.lettre:nth-child(6) {
animation-delay: 0.6s;
}
.lettre:nth-child(7) {
animation-delay: 0.7s;
}
.lettre:nth-child(8) {
animation-delay: 0.8s;
}
.lettre:nth-child(9) {
animation-delay: 0.9s;
}
.lettre:nth-child(10) {
animation-delay: 0.10;
}
.fondu-out {
opacity: 0;
transition: opacity 0.4s ease-out;
}