-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (54 loc) · 968 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
html {
font-family: Verdana, Geneva, sans-serif;
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
footer {
font-size: .7em;
margin-top: 50px;
}
.further-resources {
font-size: .8em;
margin-top: 50px;
}
.character-container {
display: flex;
flex-wrap: wrap;
}
.character-box {
display: flex;
flex-wrap: wrap;
border: 1px solid black;
width: 90px;
height: 90px;
margin: 0 15px 15px 0;
}
.character-box:last-child {
margin: 0;
}
.question {
border-bottom: 1px solid black;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 30px;
width: 90px;
}
.answer {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
height: 58px;
font-size: 2em;
border-right: 1px solid black;
}
.answer:last-child {
border-right: none;
}
.answers {
page-break-before: always;
}