forked from andyzg/gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (53 loc) · 850 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
62
63
64
65
66
body {
font-family: 'Lato', 'Helvetica', 'Verdana', sans-serif;
}
#container {
margin: 0 auto;
max-width: 1000px;
width: 90%;
}
.header {
margin-top: 124px;
margin-bottom: 32px;
font-size: 30px;
font-weight: 900;
letter-spacing: 3px;
text-transform: uppercase;
}
section {
margin-bottom: 128px;
}
section img {
vertical-align: middle;
opacity: 0;
transition: 0.5s opacity;
}
section img.img-loaded {
opacity: 1;
}
h3 {
margin-bottom: 36px;
color: #666;
font-size: 16px;
text-transform: uppercase;
font-weight: 400;
letter-spacing: 2px;
}
.footer {
padding-bottom: 32px;
color: #999;
font-weight: 300;
text-align: center;
}
.author {
transition: color 0.2s;
}
.author:visited,
.author:active,
.author:link {
color: #999;
text-decoration: none;
}
.author:hover {
color: #0099CC;
}