-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
67 lines (56 loc) · 860 Bytes
/
styles.css
File metadata and controls
67 lines (56 loc) · 860 Bytes
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
html, body {
background-color: #222222;
color: #999;
font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
h1 {
color: #FFF;
font-size: 4rem;
margin: 0rem;
text-transform: capitalize;
}
h2 {
color: #DDD;
font-size: 2rem;
text-transform: capitalize;
margin: 0rem;
}
h3 {
color: #BBB;
font-size: 1.25rem;
text-transform: capitalize;
margin: 0rem;
}
p {
margin-top: 0rem;
}
ul {
margin: 0rem;
}
li:last-child {
margin-bottom: 1em;
}
button#generate {
border-width: 0.5rem;
border-radius: 1rem;
padding: 1rem 2rem;
font-size: 2.5rem;
}
.columns {
display: flex;
flex-direction: row;
flex-basis: 0;
}
.columns > * {
flex-grow: 1;
flex-basis: 0;
}
.new-page {
page-break-before: always;
}
.race-info,
.background-info,
.name-info,
.size-info {
text-transform: capitalize;
}