-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·60 lines (52 loc) · 985 Bytes
/
Copy pathstyle.css
File metadata and controls
executable file
·60 lines (52 loc) · 985 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
body {
font-family: 'Libre Baskerville', serif;
background-color: #f9f6f1;
margin: 0;
padding: 0;
}
.stat-block {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border: 2px solid #333;
border-radius: 10px;
}
.stat-block h1, .stat-block h2 {
text-align: center;
color: #b33;
margin: 0;
}
.stat-block h1 {
font-size: 2em;
}
.stat-block h2 {
font-size: 1.5em;
margin-top: 10px;
}
.stat-section {
display: flex;
justify-content: space-between;
margin: 10px 0;
}
.stat-section div {
flex: 1;
padding: 10px;
margin: 5px;
background-color: #eee;
border-radius: 5px;
text-align: center;
}
.stat-section div label {
display: block;
margin-bottom: 5px;
color: #666;
}
.stat-section div input {
width: 100%;
padding: 5px;
border: 1px solid #333;
border-radius: 5px;
text-align: center;
font-family: 'Roboto', sans-serif;
}