-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (58 loc) · 1.1 KB
/
style.css
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
*, ::before, ::after {
box-sizing: border-box;
margin: 0;
padding: 0;
background-color: black;
}
.texte{
margin: 150px auto;
text-align: center;
display: flex;
height: 20px;
justify-content: space-between;
width: 200px;
font-family: Arial, Helvetica, sans-serif;
font-size: 25px;
font-weight: bold;
color: aliceblue;
}
.defil{
animation: defilTexte 3.5s infinite;
}
.defiler{
animation: defileTexte 3.5s infinite;
}
.a{
animation: defilerTexte 3.5s infinite;
}
@keyframes defilerTexte{
to{
color: rgb(149, 149, 223);
}
}
@keyframes defilTexte{
to{
margin-left: 65px;
color: rgb(149, 149, 223);
}
}
@keyframes defileTexte{
to{
margin-right: 65px;
color: rgb(149, 149, 223);
}
}
.pulse-anims{
height: 90px;
width: 90px;
border-radius: 100%;
background-color: rgb(149, 149, 223);
margin: 250px auto 0;
box-shadow: 0 0 0 0 rgb(105, 91, 91);
animation: pulse 0.5s infinite;
}
@keyframes pulse{
to {
box-shadow: 0 0 0 90px rgba(88, 88, 236, 0.253);
}
}