-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (63 loc) · 972 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
67
68
69
70
71
72
73
74
75
@font-face {
font-family: lato;
src: url(lato_bold.ttf);
}
body {
max-width: 45em;
min-width: 20em;
margin: auto;
padding: 1em;
font-size: 1.2em;
line-height: 1.4em;
}
h1, h2 {
font-family: lato;
}
p {
text-align: justify;
}
.image-container {
overflow: auto;
}
img {
max-width: 13em;
height: auto;
float: left;
margin-right: 1em;
border-radius: 5px;
}
@media only screen and (max-width: 600px) {
img {
float: none;
display: block;
margin-right: auto;
margin-left: auto;
}
}
a {
transition: all 300ms ease;
}
a:hover {
opacity: 0.5;
}
h3 {
margin-bottom: 0;
}
h4 {
margin-top: 0;
margin-bottom: 0;
font-style: italic;
font-weight: normal;
font-size: 0.9em;
}
h3 + p, h4 + p {
margin-top: 0;
}
footer {
background-color: blue;
color: white;
border-radius: 5px;
padding: 10px;
font-family: lato;
text-align: center;
}