-
Notifications
You must be signed in to change notification settings - Fork 0
/
thanked.css
129 lines (109 loc) · 1.67 KB
/
thanked.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[hidden] {
display: none !important;
}
html, body {
height: 100%;
}
body {
max-width: 800px;
background-color: #210;
color: #ffe;
margin: auto;
font-family: sans-serif;
}
main {
min-height: 100%;
display: flex;
flex-flow: column;
align-items: stretch;
justify-content: center;
}
.formline {
display: flex;
flex-flow: row;
margin: 3px;
align-items: center;
}
.formline label {
flex: 0 15%;
text-align: right;
padding-right: 5px;
}
input {
background-color: #fc9;
font-size: 24px;
border: 1px solid #210;
padding: 0 6px;
}
.formline input {
flex: 1;
margin-left: 3px;
}
.matchline {
margin: 5px 2px;
padding: 2px;
border: 1px solid #888;
border-radius: 1px;
justify-content: space-between;
}
.match-init {
background-color: #111;
color: #ddd;
}
.match-ambig {
background-color: #121;
color: #ded;
}
.match-likely {
background-color: #141;
color: #dfd;
}
.match-certain {
background-color: #080;
color: #dfd;
}
.match-none {
background-color: #200;
color: #edd;
}
#matchodds {
opacity: 0.5;
}
#matchbits {
flex: 0 0 60%;
overflow: hidden;
text-overflow: ellipsis;
font-size: 10px;
}
.matchbit {
font-family: monospace, monospace;
opacity: 0.5;
}
.matchbit.lit {
opacity: 0.8;
}
button {
text-align: center;
justify-content: center;
background-color: #b84;
color: #420;
border: none;
border-radius: 2px;
padding: 5px;
}
#draftarea {
flex: 0;
height: 400px;
display: flex;
flex-flow: row wrap;
align-content: flex-start;
cursor: default;
overflow-y: scroll;
}
.word {
background-color: #d84;
color: #420;
border-radius: 2px;
padding: 2px 4px;
margin: 6px;
}