-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathmain.css
More file actions
71 lines (64 loc) · 1.22 KB
/
main.css
File metadata and controls
71 lines (64 loc) · 1.22 KB
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
64
65
66
67
68
69
70
71
body{
margin: 0 auto;
font-family: 'Raleway', sans-serif;
color: #ffffff;
}
h1{
font-family: 'Quicksand', sans-serif;
text-shadow: 1px 2px #660066;
}
.button{
background-color: #fff;
text-transform: uppercase;
color: #000009;
border: 1px solid #fff;
}
.button :hover{
background: #000009;
opacity: 0.5;
font-weight: bold;
}
.button :visited{
background: #000225;
opacity: 1;
}
.header {
background: linear-gradient(-90deg, #33ccff, #000066,#9999ff, #660066);
-webkit-animation: header 20s ease infinite;
-moz-animation: header 20s ease infinite;
animation: header 20s ease infinite;
background-size: 500% 500%;
}
@-webkit-keyframes header{
0%{
background-position: 0% 50%;
}
50%{
background-position: 100% 100%;
}
100%{
background-position: 50% 0%;
}
}
@-moz-keyframes header{
0%{
background-position: 0% 50%;
}
50%{
background-position: 100% 100%;
}
100%{
background-position: 50% 0%;
}
}
@keyframes header{
0%{
background-position: 0% 50%;
}
50%{
background-position: 100% 100%;
}
100%{
background-position: 50% 0%;
}
}