forked from sincerelykristi/d3-sweet-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (53 loc) · 733 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
49
50
51
52
53
54
55
56
57
58
59
60
61
body {
margin: 0;
padding: 0;
}
#header {
height: 85px;
width: 100%;
top: 0px;
}
p.logo {
font-size: 50px;
height: 59px;
margin: 0px 0 0 30px;
}
.logo span {
animation: cycle1 10s linear infinite;
}
.logo a {
color: white;
font-size: 40px;
animation: cycle 10s linear infinite;
}
@keyframes cycle {
0% {
color: #F0F0C9;
} 50% {
color: #124E78;
} 60% {
color: #F2BB05;
} 100% {
color: #F0F0C9;
}
}
@keyframes cycle1 {
0% {
color: #F2BB05;
} 40% {
color: #F0F0C9;
} 90% {
color: #124E78;
} 100% {
color: #F2BB05;
}
}
button {
padding: 15px 20px;
border: 0;
border-radius: 5px;
}
button.highlight {
background-color: #c62828;
color: white;
}