-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
37 lines (33 loc) · 915 Bytes
/
Copy pathstyles.css
File metadata and controls
37 lines (33 loc) · 915 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
h1, h2, h3, h4, h5, h6, p, a {
font-family: "Segoe UI Variable Display", Segoe UI, "Roboto", Arial, sans-serif
}
a {
background-color: white;
border: 2px solid purple;
color: purple;
padding: 8px 8px;
margin: 4px;
border-radius: 12px;
text-align: center;
text-decoration: none;
display: inline-block;
transition-duration: 1s;
}
img {
height: 350px;
}
a:hover {
background-color: purple;
color: white;
-webkit-animation: glow 1s ease-in-out infinite alternate;
-moz-animation: glow 1s ease-in-out infinite alternate;
animation: glow 1s ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
from {
text-shadow: 0 0 10px pink, 0 0 20px pink, 0 0 30px pink, 0 0 40px pink, 0 0 50px pink, 0 0 60px pink, 0 0 70px pink;
}
to {
text-shadow: 0 0 20px purple, 0 0 30px purple, 0 0 40px purple, 0 0 50px purple, 0 0 60px purple, 0 0 70px purple, 0 0 80px purple;
}
}