-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (52 loc) · 938 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, body {
height: 100%; width: 100%; margin: 0; padding: 0;
}
body {
display: flex;
padding: 2em 5em;;
box-sizing: border-box;
font-size: 24px;
}
.small {
font-size: .6em;
}
#sidebar, #gameArea {
align-self: center;
width: 100%;
}
#sidebar {
text-align: right;
padding-right: 1em;
flex-shrink: 2;
}
h1 { font-size: 2.5em; margin: 0; }
h2 { font-weight: normal; margin: .1em; }
h3 { font-size: 1.3em; margin: .1em; }
input { font: inherit; }
[type=number] { width: 2em; text-align: right; }
a { color: navy; text-decoration: underline; cursor: pointer; }
#items {
display: flex;
text-align: left;
}
#items p {
margin: 0;
padding: 0.4em;
}
.selectArea {
flex-grow: 1;
padding-left: 1em;
}
.optionList {
column-count: 2;
}
#items p:not(.selected) {
text-decoration: underline;
cursor: pointer;
color: navy;
}
.selected {
color: black;
font-weight: bold;
text-decoration: none;
}