-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
48 lines (41 loc) · 950 Bytes
/
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
body {
display: flex;
width: 300px;
justify-content: center;
align-items: center;
animation: animate;
animation-timing-function: ease-in-out;
background-color: rgb(243, 144, 31);
animation-duration: 10s;
animation-iteration-count: infinite;
}
p {
margin: 10px;
box-shadow: 0 0 20px #fff;
font-size: 20px;
padding: 15px;
border: 2px solid white;
border-radius: 7px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
@keyframes animate {
10% {
background-color: rgb(243, 144, 31);
}
20% {
background-color: rgb(255, 238, 86);
}
40% {
background-color: rgb(88, 240, 227);
}
60% {
background-color: rgb(252, 85, 243);
}
80% {
background-color: rgb(241, 59, 144);
}
100% {
background-color: rgb(150, 245, 126);
}
}