-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (80 loc) · 1.69 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
body{
background-color: #252525;
font-family: 'Cantarell', sans-serif;
color: #FFFFFF;
font-size: 1em;
line-height: 140%;
}
li{
margin: 10px 0;
}
.title{
font-family: 'Rancho',cursive;
font-size: 2.6rem;
}
.subtitle{
font-family: 'Lato',sans-serif;
font-weight: bold;
color: #ff372d ;
font-size: 1.2rem;
}
#middle{
margin: 22vh 0 0 4vw;
}
.inner {
display: table;
margin: 0 auto;
}
figure {
display: inline-block;
}
@keyframes colors {
0% { filter:hue-rotate(5deg);}
10% { filter:hue-rotate(75deg);}
20% { filter:hue-rotate(25deg);}
30% { filter:hue-rotate(255deg);}
40% { filter:hue-rotate(155deg);}
50% { filter:hue-rotate(35deg);}
60% { filter:hue-rotate(205deg);}
70% { filter:hue-rotate(125deg);}
80% { filter:hue-rotate(185deg);}
90% { filter:hue-rotate(225deg);}
100% { filter:hue-rotate(65deg);}
}
figure img {
vertical-align: top;
}
figure img:hover {
animation-duration: 1s;
animation-name: colors;
animation-iteration-count: infinite;
}
figure figcaption {
font-family: 'Rancho',cursive;
font-size: 2.5em;
text-align: center;
}
#clear{
font-family: 'Lato',sans-serif;
font-size: 1.1em;
margin-top: 4px;
}
.pure-u-lg-1-4{
margin-left: 5vw;
margin-right: 5vw;
}
a:link {
color: #ff372d;
text-decoration: none;
}
a:visited {
color: #236bb2;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
color: #ff372d;
text-decoration: none;
}