-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
69 lines (63 loc) · 1012 Bytes
/
index.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
@import url("https://fonts.googleapis.com/css?family=Lato:900");
@import url("https://fonts.googleapis.com/css?family=Lora:400,400i");
* {
box-sizing: border-box;
}
body {
background: linear-gradient(45deg, #ddf, #fdd);
margin: 0;
}
#main {
color: #333;
font-family: "Lora", serif;
}
#main > * {
margin: 1rem 2rem;
}
#title {
font-family: Lato, sans-serif;
font-size: 3rem;
text-align: center;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Lato, sans-serif;
}
#img-figure {
}
#img-caption {
}
#image {
display: block;
max-width: 100%;
margin: auto;
height: auto;
}
#tribute-info {
}
#reference {
text-align: justify;
}
blockquote {
font-style: italic;
}
dl dt {
font-family: Lato, sans-serif;
font-weight: bold;
}
a {
text-decoration: none;
}
@media only screen and (min-width: 992px) {
#main {
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
border-radius: 2rem;
max-width: 768px;
margin: 9rem auto;
padding: 3rem 0;
}
}