forked from mrgeyer/radical-street
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.css
More file actions
76 lines (63 loc) · 1.05 KB
/
default.css
File metadata and controls
76 lines (63 loc) · 1.05 KB
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
76
.flex-container {
display: flex;
flex-direction: row;
}
#radical, .selected, .notSelected {
font-size: 15px;
font-family: monospace;
}
.column.outside {
width: 30%;
align-items: flex-end;
}
.column.inside {
width: 60.6%;
}
.column.middle {
width: 6.5%;
}
.column.right {
width: 2.9%;
}
.column.image.top {
width: 100%;
align-items: flex-start;
}
.column.image.bottom {
width: 100%;
align-items: flex-end;
}
.column.image.spacer {
align-items: flex-end;
padding: 5px;
}
.selected {
color: red;
border: 5px solid red;
background-color: white;
height: 52px;
}
.notSelected {
background-color: white;
color: black;
border: 5px solid #EEEEEE;
height: 52px;
}
#gameArea, #buttons, #radical {
padding: 5px;
}
table {
padding: 0px;
margin: 0px
border-spacing: 0px 0px;
vertical-align: top;
}
#textBox {
border: 5px solid;
font-size: 20px;
font-family: monospace;
max-width: 1200px;
min-height: 110px;
padding: 10px;
margin: 5px;
}