-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
75 lines (62 loc) · 915 Bytes
/
main.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
body {
background: #946A59;
font-family: "Bitter", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
text-rendering: auto;
color: #FEFEFE;
line-height: 1.5em;
}
.center {
text-align: center;
}
.bottomright {
position: absolute;
bottom: 0.5em;
right: 0.5em;
}
a {
text-decoration: underline;
color: #FEFEFE;
}
a:hover {
text-decoration: none;
}
img {
margin-top: 1em;
height: auto;
width: auto;
max-width: 30%;
border-radius: 2em;
border: 10px solid #666;
background: #666;
}
@media (max-width: 815px) {
body {
padding-top: 100px
}
img {
max-height: 15em;
}
}
h1 {
padding-top: 0.5em;
text-align: center;
}
h2 {
margin: 0em;
}
.questions {
background: #744A39;
padding: 1em;
line-height: normal;
font-size: 1.1rem;
max-width: 50%;
}
.centered-container {
display: flex;
justify-content: center;
align-items: flex-start;
}
pre {
display: inline;
}