-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (51 loc) · 738 Bytes
/
Copy pathstyle.css
File metadata and controls
63 lines (51 loc) · 738 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
body {
background: #0000003a;
letter-spacing: 0.2em;
font-size: 0.8em;
}
.container {
max-width: 400px;
}
.card {
background: #f8f9fa;
max-width: 400px;
}
.icon img {
position: relative;
top: -50px;
margin-bottom: -50px;
border-radius: 50%;
background-color: #e6e6e6;
}
.rainbow {
background-size: 200%;
padding: 4px;
border-radius: 10px;
animation: gradient 3s infinite;
}
@keyframes gradient {
0% {
background: #ff0000;
}
20% {
background: #ffae00;
}
40% {
background: #aecd32;
}
60% {
background: #008060;
}
80% {
background: #b1ade6;
}
100% {
background: #cc00ff;
}
120% {
background: #ff0077;
}
140% {
background: #ff0000;
}
}