-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (32 loc) · 691 Bytes
/
style.css
File metadata and controls
38 lines (32 loc) · 691 Bytes
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
/* general stuff */
body {
text-align: center;
font-family: 'Julius Sans One', sans-serif;
color: #000;
}
p {
margin-bottom: 10rem;
}
/* add some shadows to images */
img {
-moz-box-shadow: 0px 0px 15px #000;
-webkit-box-shadow: 0px 0px 15px #000;
box-shadow: 0px 0px 15px #000;
}
/* move first image up to gallery title heading */
h1 {
margin-bottom: -6rem;
}
/* restrict size of images on single site */
img.big {
width: 60%;
max-width: 1000px;
}
/* suppress ugly colors of hover and visited links */
a, a:hover, a:visited {
color: #000;
}
/* move link for colorized images up to image itself */
.colorlink {
margin-top: -6rem;
}