-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
68 lines (54 loc) · 909 Bytes
/
styles.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
html {
font-size: 10px;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
font-size: 1.6rem;
line-height: 1;
text-align: center;
color: #333;
margin: 0;
}
a {
color: #477ca7;
}
a:visited {
color: #74638f;
}
h1{
font-size: 4rem;
margin-bottom: 0;
}
#main {
margin: 30px 8px;
padding: 15px;
border-radius: 5px;
/* background: #eee; */
}
@media (max-width: 460px) {
#main {
margin: 0;
}
}
@media (max-width: 460px) {
#img-caption {
font-size: 1.4rem;
}
}
#img-div {
background: white;
padding: 50px;
margin: 0;
}
img {
max-width: 100%;
height: auto;
display: block;
height: auto;
margin: 0 auto;
}
#img-caption {
margin: 15px 0 5px 0;
text-align: right;
font-size: 12px;
}