-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.css
44 lines (34 loc) · 1.02 KB
/
contacts.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
.contact{
border: 6px solid yellow;
text-align: center;
border-radius: 12px;
font-family: Georgia, 'Times New Roman', Times, serif;
color: yellow;
}
html{
background-color: black;
color: blanchedalmond;
font-size: larger;
font-family: Georgia, 'Times New Roman', Times, serif;
color: yellow;
background-image: url("CONTACT.jpg");
}
#thank {
text-align: center;
margin-top: 390px;
}
.glow {
color: #fff;
text-align: center;
-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 #fff, 0 0 20px rgb(12, 15, 196), 0 0 30px #dfee0d, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
}
}