@mideind/netskrafl-react 1.0.0-beta.5 → 1.0.0-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{src/css/skrafl-explo.css → dist/cjs/css/netskrafl.css} +1068 -174
- package/dist/cjs/index.js +32477 -364
- package/dist/cjs/index.js.map +1 -1
- package/dist/{cjs/index.css → esm/css/netskrafl.css} +1043 -350
- package/dist/esm/index.js +32475 -364
- package/dist/esm/index.js.map +1 -1
- package/dist/types.d.ts +2 -1
- package/package.json +14 -2
- package/.eslintignore +0 -8
- package/.eslintrc.json +0 -13
- package/dist/esm/index.css +0 -6837
- package/rollup.config.js +0 -60
- package/src/components/index.ts +0 -2
- package/src/components/netskrafl/Netskrafl.stories.tsx +0 -66
- package/src/components/netskrafl/Netskrafl.tsx +0 -138
- package/src/components/netskrafl/Netskrafl.types.ts +0 -7
- package/src/components/netskrafl/index.ts +0 -2
- package/src/css/fonts.css +0 -4
- package/src/css/glyphs.css +0 -224
- package/src/fonts/glyphicons-regular.eot +0 -0
- package/src/fonts/glyphicons-regular.ttf +0 -0
- package/src/fonts/glyphicons-regular.woff +0 -0
- package/src/index.ts +0 -2
- package/src/messages/messages.json +0 -1576
- package/src/mithril/actions.ts +0 -319
- package/src/mithril/bag.ts +0 -65
- package/src/mithril/bestdisplay.ts +0 -74
- package/src/mithril/blankdialog.ts +0 -94
- package/src/mithril/board.ts +0 -339
- package/src/mithril/buttons.ts +0 -303
- package/src/mithril/challengedialog.ts +0 -186
- package/src/mithril/channel.ts +0 -162
- package/src/mithril/chat.ts +0 -228
- package/src/mithril/components.ts +0 -496
- package/src/mithril/dragdrop.ts +0 -219
- package/src/mithril/elopage.ts +0 -202
- package/src/mithril/friend.ts +0 -227
- package/src/mithril/game.ts +0 -1378
- package/src/mithril/gameview.ts +0 -111
- package/src/mithril/globalstate.ts +0 -33
- package/src/mithril/i18n.ts +0 -186
- package/src/mithril/localstorage.ts +0 -133
- package/src/mithril/login.ts +0 -122
- package/src/mithril/logo.ts +0 -323
- package/src/mithril/main.ts +0 -755
- package/src/mithril/mithril.ts +0 -29
- package/src/mithril/model.ts +0 -855
- package/src/mithril/movelistitem.ts +0 -226
- package/src/mithril/page.ts +0 -856
- package/src/mithril/playername.ts +0 -91
- package/src/mithril/promodialog.ts +0 -82
- package/src/mithril/recentlist.ts +0 -148
- package/src/mithril/request.ts +0 -52
- package/src/mithril/review.ts +0 -634
- package/src/mithril/rightcolumn.ts +0 -398
- package/src/mithril/searchbutton.ts +0 -118
- package/src/mithril/statsdisplay.ts +0 -109
- package/src/mithril/tabs.ts +0 -169
- package/src/mithril/tile.ts +0 -145
- package/src/mithril/twoletter.ts +0 -76
- package/src/mithril/types.ts +0 -384
- package/src/mithril/userinfodialog.ts +0 -171
- package/src/mithril/util.ts +0 -304
- package/src/mithril/wait.ts +0 -246
- package/src/mithril/wordcheck.ts +0 -102
- package/tsconfig.json +0 -28
- package/vite.config.ts +0 -12
|
@@ -1,15 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,700;1,400;1,700&display=swap');
|
|
3
|
-
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap');
|
|
4
|
-
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
|
|
5
|
-
|
|
6
1
|
/*
|
|
7
2
|
|
|
8
3
|
Glyphs.css
|
|
9
4
|
|
|
10
5
|
Style support for Glyphicons
|
|
11
6
|
|
|
12
|
-
Copyright ©
|
|
7
|
+
Copyright © 2025 Miðeind ehf.
|
|
13
8
|
Author: Vilhjalmur Thorsteinsson
|
|
14
9
|
|
|
15
10
|
The Creative Commons Attribution-NonCommercial 4.0
|
|
@@ -20,11 +15,10 @@
|
|
|
20
15
|
|
|
21
16
|
@font-face {
|
|
22
17
|
font-family: 'Glyphicons Regular';
|
|
23
|
-
/* The following source URLs are
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
url('
|
|
27
|
-
url('../fonts/glyphicons-regular.ttf') format('truetype');
|
|
18
|
+
/* The following source URLs are assumed to be present on the host */
|
|
19
|
+
src: url('/static/fonts/glyphicons-regular.eot') format('embedded-opentype'),
|
|
20
|
+
url('/static/fonts/glyphicons-regular.woff') format('woff'),
|
|
21
|
+
url('/static/fonts/glyphicons-regular.ttf') format('truetype');
|
|
28
22
|
}
|
|
29
23
|
|
|
30
24
|
.glyphicon {
|
|
@@ -40,237 +34,321 @@
|
|
|
40
34
|
.glyphicon-play:before {
|
|
41
35
|
content: "\E174";
|
|
42
36
|
}
|
|
37
|
+
|
|
43
38
|
.glyphicon-exclamation-sign:before {
|
|
44
39
|
content: "\E197";
|
|
45
40
|
}
|
|
41
|
+
|
|
46
42
|
.glyphicon-log-in:before {
|
|
47
43
|
content: "\E387";
|
|
48
44
|
}
|
|
45
|
+
|
|
49
46
|
.glyphicon-log-out:before {
|
|
50
47
|
content: "\E388";
|
|
51
48
|
}
|
|
49
|
+
|
|
52
50
|
.glyphicon-screenshot:before {
|
|
53
51
|
content: "\E186";
|
|
54
52
|
}
|
|
53
|
+
|
|
55
54
|
.glyphicon-refresh:before {
|
|
56
55
|
content: "\E082";
|
|
57
56
|
}
|
|
57
|
+
|
|
58
58
|
.glyphicon-forward:before {
|
|
59
59
|
content: "\E177";
|
|
60
60
|
}
|
|
61
|
+
|
|
61
62
|
.glyphicon-fire:before {
|
|
62
63
|
content: "\E023";
|
|
63
64
|
}
|
|
65
|
+
|
|
64
66
|
.glyphicon-ok:before {
|
|
65
67
|
content: "\E207";
|
|
66
68
|
}
|
|
69
|
+
|
|
67
70
|
.glyphicon-remove:before {
|
|
68
71
|
content: "\E208";
|
|
69
72
|
}
|
|
73
|
+
|
|
70
74
|
.glyphicon-info-sign:before {
|
|
71
75
|
content: "\E196";
|
|
72
76
|
}
|
|
77
|
+
|
|
73
78
|
.glyphicon-cog:before {
|
|
74
79
|
content: "\E137";
|
|
75
80
|
}
|
|
81
|
+
|
|
76
82
|
.glyphicon-chevron-left:before {
|
|
77
83
|
content: "\E225";
|
|
78
84
|
}
|
|
85
|
+
|
|
79
86
|
.glyphicon-chevron-right:before {
|
|
80
87
|
content: "\E224";
|
|
81
88
|
}
|
|
89
|
+
|
|
82
90
|
.glyphicon-circle-arrow-down:before {
|
|
83
91
|
content: "\E220";
|
|
84
92
|
}
|
|
93
|
+
|
|
85
94
|
.glyphicon-download:before {
|
|
86
95
|
content: "\E201";
|
|
87
96
|
}
|
|
97
|
+
|
|
88
98
|
.glyphicon-star:before {
|
|
89
99
|
content: "\E050";
|
|
90
100
|
}
|
|
101
|
+
|
|
91
102
|
.glyphicon-flag:before {
|
|
92
103
|
content: "\E267";
|
|
93
104
|
}
|
|
105
|
+
|
|
94
106
|
.glyphicon-flag-after:after {
|
|
95
107
|
content: "\E267";
|
|
96
108
|
}
|
|
109
|
+
|
|
97
110
|
.glyphicon-bookmark:before {
|
|
98
111
|
content: "\E073";
|
|
99
112
|
}
|
|
113
|
+
|
|
100
114
|
.glyphicon-star-empty:before {
|
|
101
115
|
content: "\E049";
|
|
102
116
|
}
|
|
117
|
+
|
|
103
118
|
.glyphicon-hand-right:before {
|
|
104
119
|
content: "\E346";
|
|
105
120
|
}
|
|
121
|
+
|
|
106
122
|
.glyphicon-hand-left:before {
|
|
107
123
|
content: "\E347";
|
|
108
124
|
}
|
|
125
|
+
|
|
109
126
|
.glyphicon-thumbs-up:before {
|
|
110
127
|
content: "\E344";
|
|
111
128
|
}
|
|
129
|
+
|
|
112
130
|
.glyphicon-thumbs-down:before {
|
|
113
131
|
content: "\E345";
|
|
114
132
|
}
|
|
133
|
+
|
|
115
134
|
.glyphicon-remove-circle:before {
|
|
116
135
|
content: "\E198";
|
|
117
136
|
}
|
|
137
|
+
|
|
118
138
|
.glyphicon-th:before {
|
|
119
139
|
content: "\E157";
|
|
120
140
|
}
|
|
141
|
+
|
|
121
142
|
.glyphicon-user:before {
|
|
122
143
|
content: "\E004";
|
|
123
144
|
}
|
|
145
|
+
|
|
124
146
|
.glyphicon-comment:before {
|
|
125
147
|
content: "\E310";
|
|
126
148
|
}
|
|
149
|
+
|
|
127
150
|
.glyphicon-eye-open:before {
|
|
128
151
|
content: "\E052";
|
|
129
152
|
}
|
|
153
|
+
|
|
130
154
|
.glyphicon-paperclip:before {
|
|
131
155
|
content: "\E063";
|
|
132
156
|
}
|
|
157
|
+
|
|
133
158
|
.glyphicon-link:before {
|
|
134
159
|
content: "\E051";
|
|
135
160
|
}
|
|
161
|
+
|
|
136
162
|
.glyphicon-arrow-up:before {
|
|
137
163
|
content: "\E214";
|
|
138
164
|
}
|
|
165
|
+
|
|
139
166
|
.glyphicon-flash:before {
|
|
140
167
|
content: "\E242";
|
|
141
168
|
}
|
|
169
|
+
|
|
142
170
|
.glyphicon-time:before {
|
|
143
171
|
content: "\E055";
|
|
144
172
|
}
|
|
173
|
+
|
|
145
174
|
.glyphicon-volume-off:before {
|
|
146
175
|
content: "\E183";
|
|
147
176
|
}
|
|
177
|
+
|
|
148
178
|
.glyphicon-volume-up:before {
|
|
149
179
|
content: "\E185";
|
|
150
180
|
}
|
|
181
|
+
|
|
151
182
|
.glyphicon-hourglass:before {
|
|
152
183
|
content: "\231B";
|
|
153
184
|
}
|
|
185
|
+
|
|
154
186
|
.glyphicon-random:before {
|
|
155
187
|
content: "\E084";
|
|
156
188
|
}
|
|
189
|
+
|
|
157
190
|
.glyphicon-down-arrow:before {
|
|
158
191
|
content: "\E213";
|
|
159
192
|
}
|
|
193
|
+
|
|
160
194
|
.glyphicon-signal:before {
|
|
161
195
|
content: "\E080";
|
|
162
196
|
}
|
|
197
|
+
|
|
163
198
|
.glyphicon-crown:before {
|
|
164
199
|
content: "\E362";
|
|
165
200
|
}
|
|
201
|
+
|
|
166
202
|
.glyphicon-dashboard:before {
|
|
167
203
|
content: "\E332";
|
|
168
204
|
}
|
|
205
|
+
|
|
169
206
|
.glyphicon-show-lines:before {
|
|
170
207
|
content: "\E159";
|
|
171
208
|
}
|
|
209
|
+
|
|
172
210
|
.glyphicon-user-conversation:before {
|
|
173
211
|
content: "\E527";
|
|
174
212
|
}
|
|
213
|
+
|
|
175
214
|
.glyphicon-life-preserver:before {
|
|
176
215
|
content: "\E308";
|
|
177
216
|
}
|
|
217
|
+
|
|
178
218
|
.glyphicon-conversation:before {
|
|
179
219
|
content: "\E245";
|
|
180
220
|
}
|
|
221
|
+
|
|
181
222
|
.glyphicon-chat:before {
|
|
182
223
|
content: "\E246";
|
|
183
224
|
}
|
|
225
|
+
|
|
184
226
|
.glyphicon-baby-formula:before {
|
|
185
227
|
content: "\E492";
|
|
186
228
|
}
|
|
229
|
+
|
|
187
230
|
.glyphicon-stroller:before {
|
|
188
231
|
content: "\E076";
|
|
189
232
|
}
|
|
233
|
+
|
|
190
234
|
.glyphicon-edit:before {
|
|
191
235
|
content: "\E151";
|
|
192
236
|
}
|
|
237
|
+
|
|
193
238
|
.glyphicon-circle-question-mark:before {
|
|
194
239
|
content: "\E195";
|
|
195
240
|
}
|
|
241
|
+
|
|
196
242
|
.glyphicon-resize-small:before {
|
|
197
243
|
content: "\E215";
|
|
198
244
|
}
|
|
245
|
+
|
|
199
246
|
.glyphicon-shopping-bag:before {
|
|
200
247
|
content: "\E351";
|
|
201
248
|
}
|
|
249
|
+
|
|
202
250
|
.glyphicon-address-book:before {
|
|
203
251
|
content: "\E089";
|
|
204
252
|
}
|
|
253
|
+
|
|
205
254
|
.glyphicon-search:before {
|
|
206
255
|
content: "\E028";
|
|
207
256
|
}
|
|
257
|
+
|
|
208
258
|
.glyphicon-lightbulb:before {
|
|
209
259
|
content: "\E065";
|
|
210
260
|
}
|
|
261
|
+
|
|
211
262
|
.glyphicon-coffee-cup:before {
|
|
212
263
|
content: "\E295";
|
|
213
264
|
}
|
|
265
|
+
|
|
214
266
|
.glyphicon-grid:before {
|
|
215
267
|
content: "\E157";
|
|
216
268
|
}
|
|
269
|
+
|
|
217
270
|
.glyphicon-home:before {
|
|
218
271
|
content: "\E021";
|
|
219
272
|
}
|
|
273
|
+
|
|
220
274
|
.glyphicon-target:before {
|
|
221
275
|
content: "\E473";
|
|
222
276
|
}
|
|
277
|
+
|
|
223
278
|
.glyphicon-ban-circle:before {
|
|
224
279
|
content: "\E200";
|
|
225
280
|
}
|
|
281
|
+
|
|
226
282
|
.glyphicon-right-arrow:before {
|
|
227
283
|
content: "\E212";
|
|
228
284
|
}
|
|
229
285
|
|
|
230
|
-
|
|
231
286
|
/*
|
|
232
287
|
|
|
233
|
-
|
|
288
|
+
Skrafl-explo.css
|
|
234
289
|
|
|
235
|
-
|
|
290
|
+
Styles for netskrafl.is using Málstaður colors
|
|
236
291
|
|
|
237
|
-
|
|
238
|
-
|
|
292
|
+
Copyright © 2025 Miðeind ehf.
|
|
293
|
+
Author: Vilhjalmur Thorsteinsson
|
|
239
294
|
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
295
|
+
The Creative Commons Attribution-NonCommercial 4.0
|
|
296
|
+
International Public License (CC-BY-NC 4.0) applies to this software.
|
|
297
|
+
For further information, see https://github.com/mideind/Netskrafl
|
|
243
298
|
|
|
244
299
|
*/
|
|
300
|
+
|
|
301
|
+
/*
|
|
302
|
+
*/
|
|
303
|
+
|
|
245
304
|
div.netskrafl-container {
|
|
246
|
-
--
|
|
305
|
+
--logo-primary: #C94314;
|
|
306
|
+
--logo-secondary: #FFAA88;
|
|
307
|
+
--logo-accent: #F17736;
|
|
308
|
+
--svarkur-primary: #066960;
|
|
309
|
+
--svarkur-secondary: #0a574f;
|
|
310
|
+
--svarkur-accent: #008b7c;
|
|
311
|
+
--malfridur-primary: #FF7C24;
|
|
312
|
+
--malfridur-secondary: #ffb400;
|
|
313
|
+
--malfridur-accent: #0788C0;
|
|
314
|
+
--malfridur-green: #09814A;
|
|
247
315
|
--dark-bg-color: #222222;
|
|
316
|
+
--light-shadow: #666666;
|
|
317
|
+
--blank-tile: #999999;
|
|
318
|
+
--middle-shadow: #cccccc;
|
|
319
|
+
--container-bg-color: #f8f8f8;
|
|
248
320
|
--light-header-color: #eaf5f7;
|
|
249
|
-
--header-
|
|
321
|
+
--header-color: hsl(from var(--malfridur-accent) h 50% 60%);
|
|
322
|
+
--header-hover-color: hsl(from var(--malfridur-accent) h 50% 70%);
|
|
323
|
+
--humangrad-color: hsl(from var(--malfridur-accent) h 55% 65%);
|
|
324
|
+
--stats-foreground: hsl(from var(--malfridur-accent) h 45% 45%);
|
|
250
325
|
--link-hover-color: #006db8;
|
|
251
|
-
--double-word-color:
|
|
252
|
-
--triple-word-color:
|
|
253
|
-
--double-letter-color:
|
|
254
|
-
--triple-letter-color:
|
|
255
|
-
--
|
|
326
|
+
--double-word-color: hsl(from var(--malfridur-secondary) h 85% 80%);
|
|
327
|
+
--triple-word-color: hsl(from var(--malfridur-secondary) h 85% 65%);
|
|
328
|
+
--double-letter-color: hsl(from var(--svarkur-accent) h 50% 75%);
|
|
329
|
+
--triple-letter-color: hsl(from var(--svarkur-secondary) h 60% 55%);
|
|
330
|
+
--chat-background: hsl(from var(--malfridur-secondary) h 65% 92%);
|
|
331
|
+
--ok-button: var(--malfridur-green);
|
|
332
|
+
--cancel-button: hsl(from var(--logo-primary) h 45% 55%);
|
|
333
|
+
--pass-button: hsl(from var(--malfridur-secondary) h 85% 50%);
|
|
334
|
+
--option-selected: hsl(from var(--svarkur-secondary) h 80% 35%);
|
|
335
|
+
--human-color: hsl(from var(--svarkur-secondary) h s 35%);
|
|
336
|
+
--list-header-background: hsl(from var(--malfridur-secondary) h 85% 90%);
|
|
337
|
+
--list-header-bottom: hsl(from var(--malfridur-secondary) h 90% 55%);
|
|
338
|
+
--tile-background: hsl(from var(--logo-secondary) h 70% 92%);
|
|
256
339
|
--board-background: #E4EAF0;
|
|
257
340
|
--tab-background: #f3f3f6;
|
|
258
341
|
--header-background: #dde1e4;
|
|
259
|
-
--
|
|
260
|
-
--
|
|
261
|
-
--two-letter-background: #D8E3D2;
|
|
342
|
+
--two-letter-background: hsl(from var(--malfridur-green) h 20% 90%);
|
|
343
|
+
--header-green: hsl(from var(--malfridur-green) h 80% 35%);
|
|
262
344
|
--dark-shadow: rgba(0, 0, 0, 0.5);
|
|
263
|
-
--light-shadow: #666666;
|
|
264
345
|
--rack-shadow: #afb7cad0;
|
|
265
346
|
--focus-border: var(--triple-word-color);
|
|
266
347
|
--light-background: #B9D9DC;
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
--
|
|
270
|
-
--
|
|
271
|
-
--list-header-bottom: #ffc559;
|
|
272
|
-
--primary-font: 'Lato', 'Open Sans', 'Arial', sans-serif;
|
|
273
|
-
--number-font: 'Open Sans', 'Lato', 'Arial', sans-serif;
|
|
348
|
+
/* The following two variables are assumed to be defined
|
|
349
|
+
by the container */
|
|
350
|
+
--primary-font: var(--font-lato);
|
|
351
|
+
--number-font: var(--font-open-sans);
|
|
274
352
|
}
|
|
275
353
|
|
|
276
354
|
div.netskrafl-container {
|
|
@@ -278,32 +356,47 @@ div.netskrafl-container {
|
|
|
278
356
|
top: 0;
|
|
279
357
|
left: 0;
|
|
280
358
|
background-color: var(--container-bg-color);
|
|
281
|
-
font-family: var(--primary-font);
|
|
359
|
+
/* font-family: var(--primary-font); */
|
|
282
360
|
width: 375px;
|
|
283
361
|
/* Full height is 667px - we subtract 115px for browser chrome, top and bottom */
|
|
284
|
-
height: 552px;
|
|
362
|
+
height: 586px; /* 552px; */
|
|
285
363
|
overflow-x: hidden;
|
|
286
364
|
overflow-y: auto;
|
|
287
365
|
margin: 0 auto;
|
|
288
366
|
user-select: none;
|
|
289
367
|
touch-action: none;
|
|
290
368
|
}
|
|
369
|
+
|
|
291
370
|
div.netskrafl-container * {
|
|
292
371
|
box-sizing: content-box;
|
|
293
372
|
}
|
|
373
|
+
|
|
294
374
|
div.netskrafl-container ol, div.netskrafl-container ul {
|
|
295
375
|
list-style: initial;
|
|
296
376
|
}
|
|
377
|
+
|
|
378
|
+
/*
|
|
297
379
|
div.netskrafl-container h1,
|
|
298
380
|
div.netskrafl-container h2,
|
|
299
|
-
div.netskrafl-container h3
|
|
300
|
-
{
|
|
381
|
+
div.netskrafl-container h3 {
|
|
301
382
|
font-size: revert;
|
|
302
383
|
font-weight: revert;
|
|
303
384
|
}
|
|
385
|
+
*/
|
|
386
|
+
|
|
387
|
+
body div.netskrafl-loading,
|
|
388
|
+
body div.netskrafl-user {
|
|
389
|
+
display: none;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
div.netskrafl-container div.netskrafl-user {
|
|
393
|
+
display: block;
|
|
394
|
+
}
|
|
395
|
+
|
|
304
396
|
div#board-background {
|
|
305
397
|
height: 100%;
|
|
306
398
|
}
|
|
399
|
+
|
|
307
400
|
div.game-container {
|
|
308
401
|
position: absolute;
|
|
309
402
|
top: 0;
|
|
@@ -313,18 +406,22 @@ div.game-container {
|
|
|
313
406
|
overflow-x: hidden;
|
|
314
407
|
overflow-y: hidden;
|
|
315
408
|
}
|
|
409
|
+
|
|
316
410
|
div.netskrafl-container p {
|
|
317
411
|
margin-top: 12px;
|
|
318
412
|
margin-bottom: 12px;
|
|
319
413
|
}
|
|
414
|
+
|
|
320
415
|
input,
|
|
321
416
|
textarea {
|
|
322
417
|
user-select: text;
|
|
323
418
|
}
|
|
419
|
+
|
|
324
420
|
p a img {
|
|
325
421
|
display: inline;
|
|
326
422
|
vertical-align: text-bottom;
|
|
327
423
|
}
|
|
424
|
+
|
|
328
425
|
.ui-helper-reset {
|
|
329
426
|
margin: 0;
|
|
330
427
|
padding: 0;
|
|
@@ -336,29 +433,35 @@ p a img {
|
|
|
336
433
|
font-size: 100%;
|
|
337
434
|
list-style: none;
|
|
338
435
|
}
|
|
436
|
+
|
|
339
437
|
.ui-helper-clearfix:before,
|
|
340
438
|
.ui-helper-clearfix:after {
|
|
341
439
|
content: "";
|
|
342
440
|
display: table;
|
|
343
441
|
border-collapse: collapse;
|
|
344
442
|
}
|
|
443
|
+
|
|
345
444
|
.ui-helper-clearfix:after {
|
|
346
445
|
clear: both;
|
|
347
446
|
}
|
|
447
|
+
|
|
348
448
|
.ui-helper-clearfix {
|
|
349
449
|
min-height: 0;
|
|
350
450
|
/* support: IE7 */
|
|
351
451
|
}
|
|
452
|
+
|
|
352
453
|
.ui-tabs {
|
|
353
454
|
position: relative;
|
|
354
455
|
/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
|
|
355
456
|
padding: 3px;
|
|
356
457
|
border-width: 0;
|
|
357
458
|
}
|
|
459
|
+
|
|
358
460
|
.ui-tabs .ui-tabs-nav {
|
|
359
461
|
margin: 0;
|
|
360
462
|
padding: 3px 3px 0;
|
|
361
463
|
}
|
|
464
|
+
|
|
362
465
|
.ui-tabs .ui-tabs-nav li {
|
|
363
466
|
list-style: none;
|
|
364
467
|
float: left;
|
|
@@ -370,6 +473,7 @@ p a img {
|
|
|
370
473
|
white-space: nowrap;
|
|
371
474
|
box-shadow: 1px 2px 4px 1px #afb7cad0;
|
|
372
475
|
}
|
|
476
|
+
|
|
373
477
|
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
|
|
374
478
|
float: left;
|
|
375
479
|
text-decoration: none;
|
|
@@ -378,15 +482,18 @@ p a img {
|
|
|
378
482
|
padding-right: 12px;
|
|
379
483
|
text-align: center;
|
|
380
484
|
}
|
|
485
|
+
|
|
381
486
|
.ui-tabs .ui-tabs-nav .ui-tabs-anchor.sp {
|
|
382
487
|
/* Single page version */
|
|
383
488
|
min-width: 51px;
|
|
384
489
|
}
|
|
490
|
+
|
|
385
491
|
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
386
492
|
margin-bottom: -1px;
|
|
387
493
|
padding-bottom: 0px;
|
|
388
494
|
background-color: var(--container-bg-color);
|
|
389
495
|
}
|
|
496
|
+
|
|
390
497
|
.ui-tabs .ui-tabs-panel {
|
|
391
498
|
display: block;
|
|
392
499
|
border-width: 0;
|
|
@@ -396,62 +503,56 @@ p a img {
|
|
|
396
503
|
padding-bottom: 4px;
|
|
397
504
|
background-color: var(--container-bg-color);
|
|
398
505
|
}
|
|
506
|
+
|
|
399
507
|
.ui-widget {
|
|
400
|
-
font-family: var(--primary-font);
|
|
401
508
|
font-size: 1.2em;
|
|
402
509
|
}
|
|
510
|
+
|
|
403
511
|
.ui-widget input,
|
|
404
512
|
.ui-widget select,
|
|
405
513
|
.ui-widget textarea,
|
|
406
514
|
.ui-widget button {
|
|
407
|
-
font-family: var(--primary-font);
|
|
408
515
|
font-size: 1em;
|
|
409
516
|
}
|
|
517
|
+
|
|
410
518
|
.ui-widget-content {
|
|
411
519
|
color: var(--dark-bg-color);
|
|
412
520
|
}
|
|
521
|
+
|
|
413
522
|
.ui-widget-content a {
|
|
414
523
|
color: var(--dark-bg-color);
|
|
415
524
|
}
|
|
525
|
+
|
|
416
526
|
.ui-widget-header {
|
|
417
527
|
color: var(--light-header-color);
|
|
418
528
|
font-weight: bold;
|
|
419
529
|
cursor: pointer;
|
|
420
530
|
}
|
|
531
|
+
|
|
421
532
|
.ui-widget-header a {
|
|
422
533
|
color: var(--light-header-color);
|
|
423
534
|
}
|
|
424
|
-
|
|
425
|
-
.ui-
|
|
426
|
-
background-color:
|
|
427
|
-
font-weight: bold;
|
|
428
|
-
color: #ffffff;
|
|
429
|
-
}
|
|
430
|
-
.ui-widget-header .ui-state-default {
|
|
431
|
-
background-color: #a9d0d6;
|
|
535
|
+
|
|
536
|
+
.ui-state-default {
|
|
537
|
+
background-color: var(--header-color);
|
|
432
538
|
font-weight: bold;
|
|
433
|
-
color:
|
|
539
|
+
color: white;
|
|
434
540
|
}
|
|
541
|
+
|
|
435
542
|
.ui-state-default a,
|
|
436
543
|
.ui-state-default a:link,
|
|
437
544
|
.ui-state-default a:visited {
|
|
438
|
-
color:
|
|
545
|
+
color: white;
|
|
439
546
|
text-decoration: none;
|
|
440
547
|
}
|
|
548
|
+
|
|
441
549
|
.ui-state-hover,
|
|
442
|
-
.ui-
|
|
443
|
-
.ui-state-focus,
|
|
444
|
-
.ui-widget-content .ui-state-focus {
|
|
445
|
-
background-color: var(--header-hover-color);
|
|
446
|
-
font-weight: bold;
|
|
447
|
-
color: #ffffff;
|
|
448
|
-
}
|
|
449
|
-
.ui-widget-header .ui-state-hover,
|
|
450
|
-
.ui-widget-header .ui-state-focus {
|
|
550
|
+
.ui-state-focus {
|
|
451
551
|
background-color: var(--header-hover-color);
|
|
452
552
|
font-weight: bold;
|
|
453
|
-
color:
|
|
553
|
+
color: white;
|
|
454
554
|
}
|
|
555
|
+
|
|
455
556
|
.ui-state-hover a,
|
|
456
557
|
.ui-state-hover a:hover,
|
|
457
558
|
.ui-state-hover a:link,
|
|
@@ -460,102 +561,101 @@ p a img {
|
|
|
460
561
|
.ui-state-focus a:hover,
|
|
461
562
|
.ui-state-focus a:link,
|
|
462
563
|
.ui-state-focus a:visited {
|
|
463
|
-
color:
|
|
464
|
-
text-decoration: none;
|
|
465
|
-
}
|
|
466
|
-
.ui-widget-header .ui-state-hover a,
|
|
467
|
-
.ui-widget-header .ui-state-hover a:hover,
|
|
468
|
-
.ui-widget-header .ui-state-hover a:link,
|
|
469
|
-
.ui-widget-header .ui-state-hover a:visited,
|
|
470
|
-
.ui-widget-header .ui-state-focus a,
|
|
471
|
-
.ui-widget-header .ui-state-focus a:hover,
|
|
472
|
-
.ui-widget-header .ui-state-focus a:link,
|
|
473
|
-
.ui-widget-header .ui-state-focus a:visited {
|
|
474
|
-
color: #ffffff;
|
|
475
|
-
/* Pantone 300 U */
|
|
476
|
-
/* #026890; */
|
|
564
|
+
color: white;
|
|
477
565
|
text-decoration: none;
|
|
478
566
|
}
|
|
479
|
-
|
|
567
|
+
|
|
568
|
+
.ui-state-focus a:focus {
|
|
480
569
|
outline: 0;
|
|
481
570
|
}
|
|
571
|
+
|
|
482
572
|
.ui-state-active,
|
|
483
573
|
.ui-widget-content .ui-state-active {
|
|
484
574
|
background-color: var(--container-bg-color);
|
|
485
575
|
font-weight: bold;
|
|
486
|
-
color:
|
|
487
|
-
/*
|
|
576
|
+
color: black;
|
|
577
|
+
/* white; */
|
|
488
578
|
}
|
|
579
|
+
|
|
489
580
|
.ui-widget-header .ui-state-active {
|
|
490
581
|
background-color: var(--container-bg-color);
|
|
491
582
|
font-weight: bold;
|
|
492
|
-
color:
|
|
493
|
-
/*
|
|
583
|
+
color: black;
|
|
584
|
+
/* white; */
|
|
494
585
|
}
|
|
586
|
+
|
|
495
587
|
.ui-state-active a,
|
|
496
588
|
.ui-state-active a:link,
|
|
589
|
+
.ui-state-active a:hover,
|
|
497
590
|
.ui-state-active a:visited {
|
|
498
|
-
color:
|
|
499
|
-
text-decoration: none;
|
|
500
|
-
}
|
|
501
|
-
.ui-widget-header .ui-state-active a,
|
|
502
|
-
.ui-widget-header .ui-state-active a:link,
|
|
503
|
-
.ui-widget-header .ui-state-active a:hover,
|
|
504
|
-
.ui-widget-header .ui-state-active a:visited {
|
|
505
|
-
color: #000000;
|
|
591
|
+
color: black;
|
|
506
592
|
text-decoration: none;
|
|
507
593
|
}
|
|
594
|
+
|
|
508
595
|
.ui-corner-all,
|
|
509
596
|
.ui-corner-left,
|
|
510
597
|
.ui-corner-tl {
|
|
511
598
|
border-top-left-radius: 4px;
|
|
512
599
|
}
|
|
600
|
+
|
|
513
601
|
.ui-corner-all,
|
|
514
602
|
.ui-corner-right,
|
|
515
603
|
.ui-corner-tr {
|
|
516
604
|
border-top-right-radius: 4px;
|
|
517
605
|
}
|
|
606
|
+
|
|
518
607
|
.ui-corner-all,
|
|
519
608
|
.ui-corner-bottom,
|
|
520
609
|
.ui-corner-left,
|
|
521
610
|
.ui-corner-bl {
|
|
522
611
|
border-bottom-left-radius: 4px;
|
|
523
612
|
}
|
|
613
|
+
|
|
524
614
|
.ui-corner-all,
|
|
525
615
|
.ui-corner-bottom,
|
|
526
616
|
.ui-corner-right,
|
|
527
617
|
.ui-corner-br {
|
|
528
618
|
border-bottom-right-radius: 4px;
|
|
529
619
|
}
|
|
620
|
+
|
|
530
621
|
.ui-corner-top {
|
|
531
622
|
border-top-left-radius: 6px;
|
|
532
623
|
border-top-right-radius: 6px;
|
|
533
624
|
}
|
|
625
|
+
|
|
534
626
|
ul.ui-tabs-nav.ui-corner-all {
|
|
535
627
|
border-bottom-left-radius: 0px;
|
|
536
628
|
border-bottom-right-radius: 0px;
|
|
537
629
|
}
|
|
630
|
+
|
|
538
631
|
/* Default media: small screen, i.e. mobile */
|
|
632
|
+
|
|
539
633
|
span.mobile-space {
|
|
540
634
|
display: inline;
|
|
541
635
|
padding-left: 32px;
|
|
542
636
|
padding-right: 32px;
|
|
543
637
|
}
|
|
638
|
+
|
|
544
639
|
.no-mobile-block {
|
|
545
640
|
display: none;
|
|
546
641
|
}
|
|
642
|
+
|
|
547
643
|
.no-mobile-inline {
|
|
548
644
|
display: none;
|
|
549
645
|
}
|
|
646
|
+
|
|
550
647
|
.no-mobile-inline-block {
|
|
551
648
|
display: none;
|
|
552
649
|
}
|
|
650
|
+
|
|
553
651
|
.no-mobile-list {
|
|
554
652
|
display: none;
|
|
555
653
|
}
|
|
654
|
+
|
|
556
655
|
.upper {
|
|
557
656
|
text-transform: uppercase;
|
|
558
657
|
}
|
|
658
|
+
|
|
559
659
|
@media all and (max-width: 360px) {
|
|
560
660
|
/* Hack to squeeze the content on 360 pixel wide phones */
|
|
561
661
|
div.netskrafl-container {
|
|
@@ -564,16 +664,19 @@ span.mobile-space {
|
|
|
564
664
|
transform-origin: center top;
|
|
565
665
|
}
|
|
566
666
|
}
|
|
667
|
+
|
|
567
668
|
div.header-logo {
|
|
568
669
|
display: block;
|
|
569
670
|
float: left;
|
|
570
|
-
padding-left:
|
|
571
|
-
padding-top:
|
|
671
|
+
padding-left: 4px;
|
|
672
|
+
padding-top: 18px;
|
|
572
673
|
}
|
|
674
|
+
|
|
573
675
|
div.header-button {
|
|
574
676
|
display: block;
|
|
575
677
|
float: right;
|
|
576
678
|
}
|
|
679
|
+
|
|
577
680
|
div.logo {
|
|
578
681
|
display: none;
|
|
579
682
|
position: absolute;
|
|
@@ -581,25 +684,38 @@ div.logo {
|
|
|
581
684
|
left: 28px;
|
|
582
685
|
width: 46px;
|
|
583
686
|
}
|
|
687
|
+
|
|
584
688
|
div.logo:hover {
|
|
585
689
|
animation: expand 0.4s;
|
|
586
690
|
}
|
|
691
|
+
|
|
692
|
+
div.netskrafl-logo {
|
|
693
|
+
display: flex;
|
|
694
|
+
align-items: center;
|
|
695
|
+
justify-content: center;
|
|
696
|
+
width: 30px;
|
|
697
|
+
height: 30px;
|
|
698
|
+
}
|
|
699
|
+
|
|
587
700
|
div.rightcol {
|
|
588
701
|
position: relative;
|
|
589
702
|
width: 362px;
|
|
590
703
|
left: 6px;
|
|
591
704
|
}
|
|
705
|
+
|
|
592
706
|
div.logowrapper {
|
|
593
707
|
display: inline-block;
|
|
594
708
|
width: 11%;
|
|
595
709
|
vertical-align: top;
|
|
596
710
|
}
|
|
711
|
+
|
|
597
712
|
div.playerwrapper {
|
|
598
713
|
display: inline-block;
|
|
599
714
|
position: relative;
|
|
600
715
|
width: 89%;
|
|
601
716
|
padding-top: 4px;
|
|
602
717
|
}
|
|
718
|
+
|
|
603
719
|
div.bag {
|
|
604
720
|
position: absolute;
|
|
605
721
|
right: 12px;
|
|
@@ -614,9 +730,11 @@ div.bag {
|
|
|
614
730
|
padding: 0;
|
|
615
731
|
opacity: 0.75;
|
|
616
732
|
}
|
|
733
|
+
|
|
617
734
|
table.bag-content {
|
|
618
735
|
border-collapse: separate;
|
|
619
736
|
}
|
|
737
|
+
|
|
620
738
|
table.bag-content td {
|
|
621
739
|
width: 12px;
|
|
622
740
|
height: 17px;
|
|
@@ -625,20 +743,25 @@ table.bag-content td {
|
|
|
625
743
|
overflow: hidden;
|
|
626
744
|
cursor: default;
|
|
627
745
|
}
|
|
746
|
+
|
|
628
747
|
table.bag-content.new td {
|
|
629
748
|
background-color: var(--tile-background);
|
|
630
749
|
}
|
|
750
|
+
|
|
631
751
|
table.bag-content.empty td {
|
|
632
752
|
background-color: var(--cancel-button);
|
|
633
753
|
/* Opponent's color */
|
|
634
754
|
color: white;
|
|
635
755
|
}
|
|
756
|
+
|
|
636
757
|
td.over {
|
|
637
758
|
outline: var(--focus-border) solid 3px;
|
|
638
759
|
}
|
|
760
|
+
|
|
639
761
|
td.highlight {
|
|
640
762
|
outline: var(--focus-border) solid 2px;
|
|
641
763
|
}
|
|
764
|
+
|
|
642
765
|
tr.colid td {
|
|
643
766
|
height: 24px;
|
|
644
767
|
width: 32px;
|
|
@@ -653,7 +776,9 @@ tr.colid td {
|
|
|
653
776
|
border-color: transparent;
|
|
654
777
|
box-shadow: none;
|
|
655
778
|
}
|
|
779
|
+
|
|
656
780
|
/* Board layout */
|
|
781
|
+
|
|
657
782
|
#H8,
|
|
658
783
|
#B2,
|
|
659
784
|
#C3,
|
|
@@ -673,6 +798,7 @@ tr.colid td {
|
|
|
673
798
|
#N14 {
|
|
674
799
|
background-color: var(--double-word-color);
|
|
675
800
|
}
|
|
801
|
+
|
|
676
802
|
#A1,
|
|
677
803
|
#A8,
|
|
678
804
|
#A15,
|
|
@@ -683,6 +809,7 @@ tr.colid td {
|
|
|
683
809
|
#O15 {
|
|
684
810
|
background-color: var(--triple-word-color);
|
|
685
811
|
}
|
|
812
|
+
|
|
686
813
|
#A4,
|
|
687
814
|
#A12,
|
|
688
815
|
#C7,
|
|
@@ -709,6 +836,7 @@ tr.colid td {
|
|
|
709
836
|
#L15 {
|
|
710
837
|
background-color: var(--double-letter-color);
|
|
711
838
|
}
|
|
839
|
+
|
|
712
840
|
#B6,
|
|
713
841
|
#B10,
|
|
714
842
|
#F2,
|
|
@@ -723,22 +851,27 @@ tr.colid td {
|
|
|
723
851
|
#J14 {
|
|
724
852
|
background-color: var(--triple-letter-color);
|
|
725
853
|
}
|
|
854
|
+
|
|
726
855
|
table.board td.dw:empty {
|
|
727
856
|
/* Double word score */
|
|
728
857
|
background-color: var(--double-word-color);
|
|
729
858
|
}
|
|
859
|
+
|
|
730
860
|
table.board td.tw:empty {
|
|
731
861
|
/* Triple word score */
|
|
732
862
|
background-color: var(--triple-word-color);
|
|
733
863
|
}
|
|
864
|
+
|
|
734
865
|
table.board td.dl:empty {
|
|
735
866
|
/* Double letter score */
|
|
736
867
|
background-color: var(--double-letter-color);
|
|
737
868
|
}
|
|
869
|
+
|
|
738
870
|
table.board td.tl:empty {
|
|
739
871
|
/* Triple letter score */
|
|
740
872
|
background-color: var(--triple-letter-color);
|
|
741
873
|
}
|
|
874
|
+
|
|
742
875
|
table.board td.center:empty {
|
|
743
876
|
font-family: 'Glyphicons Regular';
|
|
744
877
|
text-align: center;
|
|
@@ -746,11 +879,13 @@ table.board td.center:empty {
|
|
|
746
879
|
line-height: 21px;
|
|
747
880
|
color: white;
|
|
748
881
|
}
|
|
882
|
+
|
|
749
883
|
table.board td.center:empty::before {
|
|
750
884
|
content: "\E473";
|
|
751
885
|
/* Target */
|
|
752
886
|
animation: opacityBlink 1.5s infinite;
|
|
753
887
|
}
|
|
888
|
+
|
|
754
889
|
table.board {
|
|
755
890
|
margin-left: auto;
|
|
756
891
|
margin-right: auto;
|
|
@@ -759,6 +894,7 @@ table.board {
|
|
|
759
894
|
border-collapse: separate;
|
|
760
895
|
table-layout: fixed;
|
|
761
896
|
}
|
|
897
|
+
|
|
762
898
|
div.board table.board {
|
|
763
899
|
transform: scale(1);
|
|
764
900
|
transform-origin: 0 0;
|
|
@@ -769,26 +905,33 @@ div.board table.board {
|
|
|
769
905
|
transition: transform .2s ease-in-out;
|
|
770
906
|
*/
|
|
771
907
|
}
|
|
908
|
+
|
|
772
909
|
table.board tr {
|
|
773
910
|
height: 24px;
|
|
774
911
|
}
|
|
912
|
+
|
|
775
913
|
.rack table.board {
|
|
776
914
|
border-spacing: 8px;
|
|
777
915
|
margin-left: auto;
|
|
778
916
|
margin-right: auto;
|
|
779
917
|
}
|
|
918
|
+
|
|
780
919
|
.rack table.board tr {
|
|
781
920
|
height: 36px;
|
|
782
921
|
}
|
|
922
|
+
|
|
783
923
|
div.info {
|
|
784
924
|
display: none;
|
|
785
925
|
}
|
|
926
|
+
|
|
786
927
|
div.board-help {
|
|
787
928
|
display: none;
|
|
788
929
|
}
|
|
930
|
+
|
|
789
931
|
div.bag {
|
|
790
932
|
display: none;
|
|
791
933
|
}
|
|
934
|
+
|
|
792
935
|
div.board-area {
|
|
793
936
|
position: absolute;
|
|
794
937
|
margin-left: 8px;
|
|
@@ -796,15 +939,17 @@ div.board-area {
|
|
|
796
939
|
padding-top: 6px;
|
|
797
940
|
background-color: var(--container-bg-color);
|
|
798
941
|
}
|
|
942
|
+
|
|
799
943
|
div.board {
|
|
800
944
|
background-color: var(--container-bg-color);
|
|
801
|
-
overflow:
|
|
945
|
+
overflow: auto; /* Must be auto to allow panning/scrolling */
|
|
802
946
|
width: 361px;
|
|
803
947
|
}
|
|
948
|
+
|
|
804
949
|
div.tile {
|
|
805
950
|
position: relative;
|
|
806
951
|
background-color: var(--tile-background);
|
|
807
|
-
font-family:
|
|
952
|
+
font-family: var(--number-font);
|
|
808
953
|
font-size: 17px;
|
|
809
954
|
line-height: 21px;
|
|
810
955
|
font-weight: 700;
|
|
@@ -820,17 +965,21 @@ div.tile {
|
|
|
820
965
|
vertical-align: top;
|
|
821
966
|
cursor: default;
|
|
822
967
|
}
|
|
968
|
+
|
|
823
969
|
div.tile.wide,
|
|
824
970
|
div.tile.extra-wide {
|
|
825
971
|
/* Wide tile in the rack */
|
|
826
972
|
text-indent: -6px;
|
|
827
973
|
}
|
|
974
|
+
|
|
828
975
|
div.board div.tile.wide,
|
|
829
976
|
div.board div.tile.extra-wide {
|
|
830
977
|
/* Wide letter tile on the board */
|
|
831
978
|
text-indent: -2px;
|
|
832
979
|
}
|
|
980
|
+
|
|
833
981
|
/* On small form factors, we have bigger tiles in the rack than on the board */
|
|
982
|
+
|
|
834
983
|
.rack div.tile {
|
|
835
984
|
font-size: 26px;
|
|
836
985
|
line-height: 33px;
|
|
@@ -839,7 +988,9 @@ div.board div.tile.extra-wide {
|
|
|
839
988
|
margin-left: -2px;
|
|
840
989
|
padding-right: 2px;
|
|
841
990
|
}
|
|
991
|
+
|
|
842
992
|
/* While dragging a tile, show it in the rack form factor */
|
|
993
|
+
|
|
843
994
|
div.tile.dragging {
|
|
844
995
|
position: fixed;
|
|
845
996
|
z-index: 10;
|
|
@@ -847,7 +998,7 @@ div.tile.dragging {
|
|
|
847
998
|
becomes a child of the document body element when dragging, and
|
|
848
999
|
the style variables are not in scope at the body level. */
|
|
849
1000
|
box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.2);
|
|
850
|
-
border-color: #
|
|
1001
|
+
border-color: #09814A; /* var(--ok-button); */
|
|
851
1002
|
border-radius: 5px;
|
|
852
1003
|
border-width: 3px;
|
|
853
1004
|
border-style: solid;
|
|
@@ -863,9 +1014,11 @@ div.tile.dragging {
|
|
|
863
1014
|
not of the netskrafl-container div */
|
|
864
1015
|
box-sizing: content-box;
|
|
865
1016
|
}
|
|
1017
|
+
|
|
866
1018
|
div.tile.dragging.no-drop {
|
|
867
|
-
border-color: #
|
|
1019
|
+
border-color: #c07359; /* var(--cancel-button); */
|
|
868
1020
|
}
|
|
1021
|
+
|
|
869
1022
|
.board td {
|
|
870
1023
|
min-width: 21px;
|
|
871
1024
|
overflow: hidden;
|
|
@@ -876,36 +1029,43 @@ div.tile.dragging.no-drop {
|
|
|
876
1029
|
border-width: 1.5px;
|
|
877
1030
|
border-radius: 2.5px;
|
|
878
1031
|
}
|
|
1032
|
+
|
|
879
1033
|
.rack td {
|
|
880
1034
|
min-width: 36px;
|
|
881
1035
|
width: 36px;
|
|
882
1036
|
border-width: 0px;
|
|
883
1037
|
box-shadow: 2px 2px 4px 0 var(--rack-shadow);
|
|
884
1038
|
}
|
|
1039
|
+
|
|
885
1040
|
tr.colid {
|
|
886
1041
|
display: none;
|
|
887
1042
|
}
|
|
1043
|
+
|
|
888
1044
|
td.rowid {
|
|
889
1045
|
display: none;
|
|
890
1046
|
}
|
|
1047
|
+
|
|
891
1048
|
div.rack-row {
|
|
892
1049
|
display: block;
|
|
893
1050
|
width: 100%;
|
|
894
1051
|
margin-top: 8px;
|
|
895
1052
|
height: 52px;
|
|
896
1053
|
}
|
|
1054
|
+
|
|
897
1055
|
div.rack-left {
|
|
898
1056
|
display: block;
|
|
899
1057
|
width: 14%;
|
|
900
1058
|
height: 1px;
|
|
901
1059
|
float: left;
|
|
902
1060
|
}
|
|
1061
|
+
|
|
903
1062
|
div.rack-right {
|
|
904
1063
|
display: block;
|
|
905
1064
|
width: 0%;
|
|
906
1065
|
height: 1px;
|
|
907
1066
|
float: left;
|
|
908
1067
|
}
|
|
1068
|
+
|
|
909
1069
|
div.rack {
|
|
910
1070
|
display: block;
|
|
911
1071
|
position: relative;
|
|
@@ -915,6 +1075,7 @@ div.rack {
|
|
|
915
1075
|
top: -6px;
|
|
916
1076
|
left: -3px;
|
|
917
1077
|
}
|
|
1078
|
+
|
|
918
1079
|
div.letterscore {
|
|
919
1080
|
position: absolute;
|
|
920
1081
|
bottom: 0px;
|
|
@@ -929,23 +1090,27 @@ div.letterscore {
|
|
|
929
1090
|
background-color: transparent;
|
|
930
1091
|
vertical-align: bottom;
|
|
931
1092
|
}
|
|
1093
|
+
|
|
932
1094
|
div.tile.wide div.letterscore,
|
|
933
1095
|
div.tile.extra-wide div.letterscore {
|
|
934
1096
|
/* Adjust letter score tracking for wide tiles */
|
|
935
1097
|
letter-spacing: -0.5px;
|
|
936
1098
|
}
|
|
1099
|
+
|
|
937
1100
|
.rack div.letterscore {
|
|
938
1101
|
right: 2px;
|
|
939
1102
|
bottom: 3px;
|
|
940
1103
|
font-size: 9px;
|
|
941
1104
|
line-height: 9px;
|
|
942
1105
|
}
|
|
1106
|
+
|
|
943
1107
|
div.tile.dragging div.letterscore {
|
|
944
1108
|
bottom: 5px;
|
|
945
1109
|
right: 1.75px;
|
|
946
1110
|
font-size: 9px;
|
|
947
1111
|
line-height: 9px;
|
|
948
1112
|
}
|
|
1113
|
+
|
|
949
1114
|
div.word-check {
|
|
950
1115
|
display: none;
|
|
951
1116
|
position: absolute;
|
|
@@ -963,8 +1128,9 @@ div.word-check {
|
|
|
963
1128
|
line-height: 42px;
|
|
964
1129
|
visibility: hidden;
|
|
965
1130
|
border: 1.5px solid;
|
|
966
|
-
border-radius:
|
|
1131
|
+
border-radius: 5px;
|
|
967
1132
|
}
|
|
1133
|
+
|
|
968
1134
|
div.score {
|
|
969
1135
|
display: none;
|
|
970
1136
|
position: absolute;
|
|
@@ -980,9 +1146,10 @@ div.score {
|
|
|
980
1146
|
line-height: 42px;
|
|
981
1147
|
color: var(--blank-tile);
|
|
982
1148
|
border: 1.5px solid;
|
|
983
|
-
border-radius:
|
|
1149
|
+
border-radius: 5px;
|
|
984
1150
|
border-color: var(--blank-tile);
|
|
985
1151
|
}
|
|
1152
|
+
|
|
986
1153
|
.standard-button {
|
|
987
1154
|
text-align: center;
|
|
988
1155
|
font-size: 18px;
|
|
@@ -994,20 +1161,7 @@ div.score {
|
|
|
994
1161
|
border-radius: 5px;
|
|
995
1162
|
cursor: pointer;
|
|
996
1163
|
}
|
|
997
|
-
|
|
998
|
-
text-align: center;
|
|
999
|
-
font-size: 18px;
|
|
1000
|
-
font-weight: 700;
|
|
1001
|
-
color: white;
|
|
1002
|
-
margin: 0;
|
|
1003
|
-
padding: 6px;
|
|
1004
|
-
padding-top: 9px;
|
|
1005
|
-
border-radius: 5px;
|
|
1006
|
-
cursor: pointer;
|
|
1007
|
-
width: 32px;
|
|
1008
|
-
height: 26px;
|
|
1009
|
-
background-color: var(--ok-button);
|
|
1010
|
-
}
|
|
1164
|
+
|
|
1011
1165
|
div.submitnewgame {
|
|
1012
1166
|
text-align: center;
|
|
1013
1167
|
font-size: 18px;
|
|
@@ -1023,6 +1177,7 @@ div.submitnewgame {
|
|
|
1023
1177
|
background-color: var(--ok-button);
|
|
1024
1178
|
display: none;
|
|
1025
1179
|
}
|
|
1180
|
+
|
|
1026
1181
|
div.fb-share {
|
|
1027
1182
|
text-align: center;
|
|
1028
1183
|
font-size: 18px;
|
|
@@ -1039,43 +1194,46 @@ div.fb-share {
|
|
|
1039
1194
|
display: none;
|
|
1040
1195
|
/* Don't display on mobile */
|
|
1041
1196
|
}
|
|
1197
|
+
|
|
1042
1198
|
div.fb-share:hover {
|
|
1043
1199
|
outline: var(--focus-border) solid 3px;
|
|
1044
1200
|
}
|
|
1201
|
+
|
|
1045
1202
|
div.waitmove {
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
color: white;
|
|
1203
|
+
display: flex;
|
|
1204
|
+
justify-content: center;
|
|
1205
|
+
align-items: center;
|
|
1206
|
+
background-color: white;
|
|
1050
1207
|
margin: 0;
|
|
1208
|
+
margin-right: 1px;
|
|
1051
1209
|
padding: 6px;
|
|
1052
|
-
padding-top: 9px;
|
|
1053
1210
|
border-radius: 5px;
|
|
1054
|
-
cursor:
|
|
1055
|
-
width:
|
|
1056
|
-
height:
|
|
1057
|
-
background-color: var(--ok-button);
|
|
1211
|
+
cursor: default;
|
|
1212
|
+
width: 96px;
|
|
1213
|
+
height: 24px;
|
|
1058
1214
|
z-index: 10;
|
|
1059
1215
|
border-style: solid;
|
|
1060
|
-
border-width:
|
|
1061
|
-
border-color: var(--
|
|
1062
|
-
background-color: white;
|
|
1063
|
-
margin-right: 1px;
|
|
1216
|
+
border-width: 1.5px;
|
|
1217
|
+
border-color: var(--logo-accent);
|
|
1064
1218
|
float: right;
|
|
1065
|
-
width: 96px;
|
|
1066
1219
|
}
|
|
1220
|
+
|
|
1067
1221
|
div.animated-waitmove {
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1222
|
+
display: flex;
|
|
1223
|
+
justify-content: center;
|
|
1224
|
+
align-items: center;
|
|
1225
|
+
width: 26px;
|
|
1226
|
+
height: 26px;
|
|
1072
1227
|
}
|
|
1228
|
+
|
|
1073
1229
|
div.login-buttons {
|
|
1074
1230
|
position: relative;
|
|
1075
1231
|
}
|
|
1232
|
+
|
|
1076
1233
|
div.login-padding {
|
|
1077
1234
|
min-height: 60px;
|
|
1078
1235
|
}
|
|
1236
|
+
|
|
1079
1237
|
div.try-again {
|
|
1080
1238
|
text-align: center;
|
|
1081
1239
|
font-size: 18px;
|
|
@@ -1098,6 +1256,7 @@ div.try-again {
|
|
|
1098
1256
|
padding: 10px;
|
|
1099
1257
|
font-size: 16px;
|
|
1100
1258
|
}
|
|
1259
|
+
|
|
1101
1260
|
div.get-help {
|
|
1102
1261
|
text-align: center;
|
|
1103
1262
|
font-size: 18px;
|
|
@@ -1121,12 +1280,15 @@ div.get-help {
|
|
|
1121
1280
|
font-size: 16px;
|
|
1122
1281
|
background-color: var(--triple-letter-color);
|
|
1123
1282
|
}
|
|
1283
|
+
|
|
1124
1284
|
div.get-help span.glyphicon {
|
|
1125
1285
|
padding-right: 6px;
|
|
1126
1286
|
}
|
|
1287
|
+
|
|
1127
1288
|
div.try-again span.glyphicon {
|
|
1128
1289
|
padding-right: 6px;
|
|
1129
1290
|
}
|
|
1291
|
+
|
|
1130
1292
|
div.recallbtn {
|
|
1131
1293
|
text-align: center;
|
|
1132
1294
|
font-size: 18px;
|
|
@@ -1142,11 +1304,13 @@ div.recallbtn {
|
|
|
1142
1304
|
background-color: var(--triple-word-color);
|
|
1143
1305
|
display: none;
|
|
1144
1306
|
}
|
|
1307
|
+
|
|
1145
1308
|
div.rack-left div.recallbtn {
|
|
1146
1309
|
display: block;
|
|
1147
1310
|
margin-right: auto;
|
|
1148
1311
|
/* Left-align the button */
|
|
1149
1312
|
}
|
|
1313
|
+
|
|
1150
1314
|
div.scramblebtn {
|
|
1151
1315
|
text-align: center;
|
|
1152
1316
|
font-size: 18px;
|
|
@@ -1159,21 +1323,25 @@ div.scramblebtn {
|
|
|
1159
1323
|
cursor: pointer;
|
|
1160
1324
|
width: 33px;
|
|
1161
1325
|
height: 26px;
|
|
1162
|
-
background-color: var(--
|
|
1326
|
+
background-color: var(--malfridur-accent);
|
|
1163
1327
|
display: none;
|
|
1164
1328
|
}
|
|
1329
|
+
|
|
1165
1330
|
div.rack-left div.scramblebtn {
|
|
1166
1331
|
display: block;
|
|
1167
1332
|
margin-right: auto;
|
|
1168
1333
|
/* Left-align the button */
|
|
1169
1334
|
}
|
|
1335
|
+
|
|
1170
1336
|
div.buttons {
|
|
1171
1337
|
position: relative;
|
|
1172
1338
|
height: 54px;
|
|
1173
1339
|
}
|
|
1340
|
+
|
|
1174
1341
|
div.buttons .glyphicon {
|
|
1175
1342
|
top: 0;
|
|
1176
1343
|
}
|
|
1344
|
+
|
|
1177
1345
|
.bottom-button {
|
|
1178
1346
|
text-align: center;
|
|
1179
1347
|
font-size: 18px;
|
|
@@ -1187,11 +1355,12 @@ div.buttons .glyphicon {
|
|
|
1187
1355
|
position: absolute;
|
|
1188
1356
|
top: 0;
|
|
1189
1357
|
padding-top: 8px;
|
|
1190
|
-
background-color:
|
|
1191
|
-
border: 1.5px solid
|
|
1358
|
+
background-color: var(--tab-background);
|
|
1359
|
+
border: 1.5px solid var(--header-background);
|
|
1192
1360
|
width: 66px;
|
|
1193
1361
|
height: 23px;
|
|
1194
1362
|
}
|
|
1363
|
+
|
|
1195
1364
|
div.submitresign {
|
|
1196
1365
|
text-align: center;
|
|
1197
1366
|
font-size: 18px;
|
|
@@ -1204,13 +1373,14 @@ div.submitresign {
|
|
|
1204
1373
|
position: absolute;
|
|
1205
1374
|
top: 0;
|
|
1206
1375
|
padding-top: 8px;
|
|
1207
|
-
background-color:
|
|
1208
|
-
border: 1.5px solid
|
|
1376
|
+
background-color: var(--tab-background);
|
|
1377
|
+
border: 1.5px solid var(--header-background);
|
|
1209
1378
|
width: 66px;
|
|
1210
1379
|
height: 23px;
|
|
1211
1380
|
color: var(--cancel-button);
|
|
1212
1381
|
left: 0px;
|
|
1213
1382
|
}
|
|
1383
|
+
|
|
1214
1384
|
div.submitexchange {
|
|
1215
1385
|
text-align: center;
|
|
1216
1386
|
font-size: 18px;
|
|
@@ -1224,15 +1394,17 @@ div.submitexchange {
|
|
|
1224
1394
|
top: 0;
|
|
1225
1395
|
left: 93px;
|
|
1226
1396
|
padding-top: 8px;
|
|
1227
|
-
background-color:
|
|
1228
|
-
border: 1.5px solid
|
|
1397
|
+
background-color: var(--tab-background);
|
|
1398
|
+
border: 1.5px solid var(--header-background);
|
|
1229
1399
|
width: 66px;
|
|
1230
1400
|
height: 23px;
|
|
1231
1401
|
color: var(--ok-button);
|
|
1232
1402
|
}
|
|
1403
|
+
|
|
1233
1404
|
div.submitexchange.disabled {
|
|
1234
|
-
color:
|
|
1405
|
+
color: var(--blank-tile);
|
|
1235
1406
|
}
|
|
1407
|
+
|
|
1236
1408
|
div.submitpass {
|
|
1237
1409
|
text-align: center;
|
|
1238
1410
|
font-size: 18px;
|
|
@@ -1245,13 +1417,14 @@ div.submitpass {
|
|
|
1245
1417
|
position: absolute;
|
|
1246
1418
|
top: 0;
|
|
1247
1419
|
padding-top: 8px;
|
|
1248
|
-
background-color:
|
|
1249
|
-
border: 1.5px solid
|
|
1420
|
+
background-color: var(--tab-background);
|
|
1421
|
+
border: 1.5px solid var(--header-background);
|
|
1250
1422
|
width: 66px;
|
|
1251
1423
|
height: 23px;
|
|
1252
|
-
color: var(--
|
|
1424
|
+
color: var(--pass-button);
|
|
1253
1425
|
left: 186px;
|
|
1254
1426
|
}
|
|
1427
|
+
|
|
1255
1428
|
div.challenge {
|
|
1256
1429
|
text-align: center;
|
|
1257
1430
|
font-size: 18px;
|
|
@@ -1264,16 +1437,18 @@ div.challenge {
|
|
|
1264
1437
|
position: absolute;
|
|
1265
1438
|
top: 0;
|
|
1266
1439
|
padding-top: 8px;
|
|
1267
|
-
background-color: var(--
|
|
1268
|
-
border: 1.5px solid
|
|
1440
|
+
background-color: var(--tab-background);
|
|
1441
|
+
border: 1.5px solid var(--header-background);
|
|
1269
1442
|
width: 66px;
|
|
1270
1443
|
height: 23px;
|
|
1271
1444
|
left: 279px;
|
|
1272
1445
|
color: var(--triple-letter-color);
|
|
1273
1446
|
}
|
|
1447
|
+
|
|
1274
1448
|
div.challenge.disabled {
|
|
1275
1449
|
border-color: var(--board-background);
|
|
1276
1450
|
}
|
|
1451
|
+
|
|
1277
1452
|
div.submitmove {
|
|
1278
1453
|
text-align: center;
|
|
1279
1454
|
font-size: 18px;
|
|
@@ -1289,17 +1464,21 @@ div.submitmove {
|
|
|
1289
1464
|
background-color: var(--ok-button);
|
|
1290
1465
|
display: none;
|
|
1291
1466
|
}
|
|
1467
|
+
|
|
1292
1468
|
div.rack-right div.submitmove {
|
|
1293
1469
|
display: block;
|
|
1294
1470
|
margin-left: auto;
|
|
1295
1471
|
/* Right-align the button */
|
|
1296
1472
|
}
|
|
1473
|
+
|
|
1297
1474
|
div.submitmove.error-shown {
|
|
1298
1475
|
display: none;
|
|
1299
1476
|
}
|
|
1477
|
+
|
|
1300
1478
|
div.submitmove span.glyphicon {
|
|
1301
1479
|
margin-left: 8px;
|
|
1302
1480
|
}
|
|
1481
|
+
|
|
1303
1482
|
div.player {
|
|
1304
1483
|
display: block;
|
|
1305
1484
|
padding-left: 4px;
|
|
@@ -1310,11 +1489,13 @@ div.player {
|
|
|
1310
1489
|
font-weight: 400;
|
|
1311
1490
|
color: white;
|
|
1312
1491
|
}
|
|
1492
|
+
|
|
1313
1493
|
div.scorewrapper {
|
|
1314
1494
|
font-family: var(--number-font);
|
|
1315
1495
|
background-color: transparent;
|
|
1316
1496
|
width: 100%;
|
|
1317
1497
|
}
|
|
1498
|
+
|
|
1318
1499
|
div.scoreleft {
|
|
1319
1500
|
display: block;
|
|
1320
1501
|
width: 42px;
|
|
@@ -1330,6 +1511,7 @@ div.scoreleft {
|
|
|
1330
1511
|
top: 4px;
|
|
1331
1512
|
left: 0;
|
|
1332
1513
|
}
|
|
1514
|
+
|
|
1333
1515
|
div.scoreright {
|
|
1334
1516
|
display: block;
|
|
1335
1517
|
width: 42px;
|
|
@@ -1345,12 +1527,13 @@ div.scoreright {
|
|
|
1345
1527
|
top: 4px;
|
|
1346
1528
|
right: 0;
|
|
1347
1529
|
}
|
|
1530
|
+
|
|
1348
1531
|
div.robot-btn {
|
|
1349
1532
|
display: block;
|
|
1350
1533
|
position: absolute;
|
|
1351
1534
|
margin-left: 0px;
|
|
1352
1535
|
margin-right: 2px;
|
|
1353
|
-
padding-top:
|
|
1536
|
+
padding-top: 4px;
|
|
1354
1537
|
height: 30px;
|
|
1355
1538
|
min-height: 30px;
|
|
1356
1539
|
line-height: 22px;
|
|
@@ -1359,20 +1542,23 @@ div.robot-btn {
|
|
|
1359
1542
|
overflow: hidden;
|
|
1360
1543
|
background-color: transparent;
|
|
1361
1544
|
}
|
|
1545
|
+
|
|
1362
1546
|
div.robot-btn span.glyphicon-cog {
|
|
1363
1547
|
margin-right: 2px;
|
|
1364
1548
|
}
|
|
1549
|
+
|
|
1365
1550
|
div.gamestats div.robot-btn {
|
|
1366
1551
|
width: 100%;
|
|
1367
1552
|
margin: 0;
|
|
1368
1553
|
padding-top: 6px;
|
|
1369
1554
|
}
|
|
1555
|
+
|
|
1370
1556
|
div.player-btn {
|
|
1371
1557
|
display: block;
|
|
1372
1558
|
position: absolute;
|
|
1373
|
-
margin-left:
|
|
1374
|
-
margin-right:
|
|
1375
|
-
padding-top:
|
|
1559
|
+
margin-left: 4px;
|
|
1560
|
+
margin-right: 4px;
|
|
1561
|
+
padding-top: 4px;
|
|
1376
1562
|
height: 30px;
|
|
1377
1563
|
min-height: 30px;
|
|
1378
1564
|
line-height: 22px;
|
|
@@ -1384,25 +1570,29 @@ div.player-btn {
|
|
|
1384
1570
|
border-width: 0;
|
|
1385
1571
|
border-radius: 5px;
|
|
1386
1572
|
}
|
|
1573
|
+
|
|
1387
1574
|
div.player-btn.left,
|
|
1388
1575
|
div.robot-btn.left {
|
|
1389
1576
|
padding-left: 38px;
|
|
1390
|
-
padding-right:
|
|
1577
|
+
padding-right: 4px;
|
|
1391
1578
|
}
|
|
1579
|
+
|
|
1392
1580
|
div.player-btn.right,
|
|
1393
1581
|
div.robot-btn.right {
|
|
1394
|
-
padding-left:
|
|
1395
|
-
/* Note: purposefully a bit asymmetric with the left button */
|
|
1582
|
+
padding-left: 4px;
|
|
1396
1583
|
padding-right: 38px;
|
|
1397
1584
|
}
|
|
1585
|
+
|
|
1398
1586
|
div.player-btn.left.tomove,
|
|
1399
1587
|
div.player-btn.right.tomove {
|
|
1400
1588
|
color: white;
|
|
1401
1589
|
}
|
|
1590
|
+
|
|
1402
1591
|
div.player-btn.left.tomove:hover,
|
|
1403
1592
|
div.player-btn.right.tomove:hover {
|
|
1404
1593
|
color: black;
|
|
1405
1594
|
}
|
|
1595
|
+
|
|
1406
1596
|
div.heading {
|
|
1407
1597
|
position: relative;
|
|
1408
1598
|
width: 100%;
|
|
@@ -1413,6 +1603,7 @@ div.heading {
|
|
|
1413
1603
|
padding-right: 0;
|
|
1414
1604
|
height: 38px;
|
|
1415
1605
|
}
|
|
1606
|
+
|
|
1416
1607
|
div.tabbed-page {
|
|
1417
1608
|
position: absolute;
|
|
1418
1609
|
left: 0;
|
|
@@ -1423,9 +1614,11 @@ div.tabbed-page {
|
|
|
1423
1614
|
font-size: 13px;
|
|
1424
1615
|
line-height: 23px;
|
|
1425
1616
|
}
|
|
1617
|
+
|
|
1426
1618
|
div.tab-scroll-area {
|
|
1427
1619
|
position: relative;
|
|
1428
1620
|
}
|
|
1621
|
+
|
|
1429
1622
|
div.loginform-small {
|
|
1430
1623
|
display: block;
|
|
1431
1624
|
position: absolute;
|
|
@@ -1434,6 +1627,7 @@ div.loginform-small {
|
|
|
1434
1627
|
padding-left: 0;
|
|
1435
1628
|
padding-right: 0;
|
|
1436
1629
|
}
|
|
1630
|
+
|
|
1437
1631
|
div.loginform-large {
|
|
1438
1632
|
display: none;
|
|
1439
1633
|
position: absolute;
|
|
@@ -1444,22 +1638,27 @@ div.loginform-large {
|
|
|
1444
1638
|
max-width: 740px;
|
|
1445
1639
|
padding: 0;
|
|
1446
1640
|
}
|
|
1641
|
+
|
|
1447
1642
|
div.login-logo {
|
|
1448
1643
|
margin-top: 120px;
|
|
1449
1644
|
margin-left: 100px;
|
|
1450
1645
|
}
|
|
1646
|
+
|
|
1451
1647
|
div.login-legend {
|
|
1452
1648
|
margin-left: 50px;
|
|
1453
1649
|
margin-top: 40px;
|
|
1454
1650
|
}
|
|
1651
|
+
|
|
1455
1652
|
div#logo-pic {
|
|
1456
1653
|
text-align: center;
|
|
1457
1654
|
padding-top: 32px;
|
|
1458
1655
|
padding-bottom: 16px;
|
|
1459
1656
|
}
|
|
1657
|
+
|
|
1460
1658
|
div.loginform-small div#logo-pic {
|
|
1461
1659
|
padding-top: 0;
|
|
1462
1660
|
}
|
|
1661
|
+
|
|
1463
1662
|
@keyframes expand {
|
|
1464
1663
|
0% {
|
|
1465
1664
|
transform: scale(1);
|
|
@@ -1471,6 +1670,7 @@ div.loginform-small div#logo-pic {
|
|
|
1471
1670
|
transform: scale(1);
|
|
1472
1671
|
}
|
|
1473
1672
|
}
|
|
1673
|
+
|
|
1474
1674
|
@-webkit-keyframes expand {
|
|
1475
1675
|
0% {
|
|
1476
1676
|
transform: scale(1);
|
|
@@ -1482,6 +1682,7 @@ div.loginform-small div#logo-pic {
|
|
|
1482
1682
|
transform: scale(1);
|
|
1483
1683
|
}
|
|
1484
1684
|
}
|
|
1685
|
+
|
|
1485
1686
|
@keyframes slidein {
|
|
1486
1687
|
0% {
|
|
1487
1688
|
transform: scale(0);
|
|
@@ -1490,6 +1691,7 @@ div.loginform-small div#logo-pic {
|
|
|
1490
1691
|
transform: scale(1);
|
|
1491
1692
|
}
|
|
1492
1693
|
}
|
|
1694
|
+
|
|
1493
1695
|
@-webkit-keyframes slidein {
|
|
1494
1696
|
0% {
|
|
1495
1697
|
transform: scale(0);
|
|
@@ -1498,6 +1700,7 @@ div.loginform-small div#logo-pic {
|
|
|
1498
1700
|
transform: scale(1);
|
|
1499
1701
|
}
|
|
1500
1702
|
}
|
|
1703
|
+
|
|
1501
1704
|
div.login-btn-large {
|
|
1502
1705
|
text-align: center;
|
|
1503
1706
|
font-size: 19px;
|
|
@@ -1515,13 +1718,16 @@ div.login-btn-large {
|
|
|
1515
1718
|
cursor: pointer;
|
|
1516
1719
|
float: right;
|
|
1517
1720
|
}
|
|
1721
|
+
|
|
1518
1722
|
div.login-btn-large:hover {
|
|
1519
|
-
background-color: var(--
|
|
1723
|
+
background-color: var(--pass-button);
|
|
1520
1724
|
animation: expand 0.4s;
|
|
1521
1725
|
}
|
|
1726
|
+
|
|
1522
1727
|
div.login-btn-large span {
|
|
1523
1728
|
padding-left: 18px;
|
|
1524
1729
|
}
|
|
1730
|
+
|
|
1525
1731
|
div.login-btn-small {
|
|
1526
1732
|
width: 60%;
|
|
1527
1733
|
text-align: center;
|
|
@@ -1539,15 +1745,18 @@ div.login-btn-small {
|
|
|
1539
1745
|
vertical-align: middle;
|
|
1540
1746
|
cursor: pointer;
|
|
1541
1747
|
}
|
|
1748
|
+
|
|
1542
1749
|
div.login-btn-small:hover {
|
|
1543
|
-
background-color: var(--
|
|
1750
|
+
background-color: var(--pass-button);
|
|
1544
1751
|
}
|
|
1752
|
+
|
|
1545
1753
|
div.blurb {
|
|
1546
1754
|
font-size: 16px;
|
|
1547
1755
|
font-weight: bold;
|
|
1548
1756
|
padding-bottom: 24px;
|
|
1549
1757
|
text-align: center;
|
|
1550
1758
|
}
|
|
1759
|
+
|
|
1551
1760
|
div.login-error {
|
|
1552
1761
|
padding: 12px;
|
|
1553
1762
|
margin-top: 160px;
|
|
@@ -1561,27 +1770,32 @@ div.login-error {
|
|
|
1561
1770
|
font-size: 15px;
|
|
1562
1771
|
box-shadow: 3px 3px 5px 2px var(--dark-shadow);
|
|
1563
1772
|
}
|
|
1773
|
+
|
|
1564
1774
|
p.login-sorry {
|
|
1565
1775
|
font-weight: bold;
|
|
1566
1776
|
}
|
|
1777
|
+
|
|
1567
1778
|
p.login-error-icon {
|
|
1568
1779
|
margin-top: 8px;
|
|
1569
1780
|
margin-bottom: 8px;
|
|
1570
1781
|
font-size: 34px;
|
|
1571
1782
|
color: var(--triple-word-color);
|
|
1572
1783
|
}
|
|
1784
|
+
|
|
1573
1785
|
div.leftplayer {
|
|
1574
1786
|
display: inline-block;
|
|
1575
1787
|
width: 50%;
|
|
1576
1788
|
text-align: left;
|
|
1577
1789
|
border-radius: 4px 0 0 4px;
|
|
1578
1790
|
}
|
|
1791
|
+
|
|
1579
1792
|
div.rightplayer {
|
|
1580
1793
|
display: inline-block;
|
|
1581
1794
|
width: 50%;
|
|
1582
1795
|
text-align: right;
|
|
1583
1796
|
border-radius: 0 4px 4px 0;
|
|
1584
1797
|
}
|
|
1798
|
+
|
|
1585
1799
|
div.right-tab {
|
|
1586
1800
|
position: absolute;
|
|
1587
1801
|
top: -28px;
|
|
@@ -1602,37 +1816,46 @@ div.right-tab {
|
|
|
1602
1816
|
cursor: pointer;
|
|
1603
1817
|
box-shadow: 2px 2px 4px 0 #afb7cad0;
|
|
1604
1818
|
}
|
|
1819
|
+
|
|
1605
1820
|
div.right-tab#tab-board {
|
|
1606
1821
|
left: 41px;
|
|
1607
1822
|
background-color: var(--container-bg-color);
|
|
1608
1823
|
}
|
|
1824
|
+
|
|
1609
1825
|
div.right-tab#tab-movelist {
|
|
1610
1826
|
left: 106px;
|
|
1611
1827
|
background-color: var(--board-background);
|
|
1612
1828
|
}
|
|
1829
|
+
|
|
1613
1830
|
div.right-tab#tab-twoletter {
|
|
1614
1831
|
left: 171px;
|
|
1615
1832
|
background-color: var(--two-letter-background);
|
|
1616
1833
|
}
|
|
1834
|
+
|
|
1617
1835
|
div.right-tab#tab-games {
|
|
1618
1836
|
left: 236px;
|
|
1619
1837
|
background-color: var(--tile-background);
|
|
1620
1838
|
}
|
|
1839
|
+
|
|
1621
1840
|
div.right-tab#tab-chat {
|
|
1622
1841
|
left: 301px;
|
|
1623
|
-
background-color:
|
|
1842
|
+
background-color: var(--chat-background);
|
|
1624
1843
|
}
|
|
1844
|
+
|
|
1625
1845
|
div.right-tab.selected {
|
|
1626
1846
|
opacity: 1;
|
|
1627
1847
|
}
|
|
1848
|
+
|
|
1628
1849
|
div.right-tab:hover {
|
|
1629
1850
|
opacity: 1;
|
|
1630
1851
|
}
|
|
1852
|
+
|
|
1631
1853
|
div.right-tab.alert > span.glyphicon {
|
|
1632
1854
|
color: var(--cancel-button);
|
|
1633
1855
|
animation: redBlink 1s infinite;
|
|
1634
1856
|
-webkit-animation: redBlink 1s infinite;
|
|
1635
1857
|
}
|
|
1858
|
+
|
|
1636
1859
|
div.right-area {
|
|
1637
1860
|
/* display: none; */
|
|
1638
1861
|
position: relative;
|
|
@@ -1646,10 +1869,12 @@ div.right-area {
|
|
|
1646
1869
|
color: black;
|
|
1647
1870
|
cursor: default;
|
|
1648
1871
|
}
|
|
1872
|
+
|
|
1649
1873
|
div.right-area.with-clock {
|
|
1650
1874
|
height: 380px;
|
|
1651
|
-
margin-top:
|
|
1875
|
+
margin-top: 46px;
|
|
1652
1876
|
}
|
|
1877
|
+
|
|
1653
1878
|
div.message {
|
|
1654
1879
|
text-align: center;
|
|
1655
1880
|
font-size: 14px;
|
|
@@ -1658,9 +1883,11 @@ div.message {
|
|
|
1658
1883
|
background-color: var(--light-background);
|
|
1659
1884
|
font-weight: 400;
|
|
1660
1885
|
}
|
|
1886
|
+
|
|
1661
1887
|
div.message strong {
|
|
1662
1888
|
text-transform: uppercase;
|
|
1663
1889
|
}
|
|
1890
|
+
|
|
1664
1891
|
div.movelist-container {
|
|
1665
1892
|
position: absolute;
|
|
1666
1893
|
top: 0;
|
|
@@ -1673,6 +1900,7 @@ div.movelist-container {
|
|
|
1673
1900
|
z-index: 6;
|
|
1674
1901
|
border-radius: 4px 4px 0 0;
|
|
1675
1902
|
}
|
|
1903
|
+
|
|
1676
1904
|
div.movelist {
|
|
1677
1905
|
font-family: var(--number-font);
|
|
1678
1906
|
margin: 0;
|
|
@@ -1681,9 +1909,11 @@ div.movelist {
|
|
|
1681
1909
|
width: 100%;
|
|
1682
1910
|
height: 350px;
|
|
1683
1911
|
}
|
|
1912
|
+
|
|
1684
1913
|
div.movelist.bestmoves {
|
|
1685
1914
|
overflow-y: hidden;
|
|
1686
1915
|
}
|
|
1916
|
+
|
|
1687
1917
|
div.movelist-container div.bag {
|
|
1688
1918
|
display: block;
|
|
1689
1919
|
background-color: var(--container-bg-color);
|
|
@@ -1695,9 +1925,11 @@ div.movelist-container div.bag {
|
|
|
1695
1925
|
width: 100%;
|
|
1696
1926
|
height: 104px;
|
|
1697
1927
|
}
|
|
1928
|
+
|
|
1698
1929
|
div.game-timed {
|
|
1699
1930
|
display: none;
|
|
1700
1931
|
}
|
|
1932
|
+
|
|
1701
1933
|
div.modal-dialog {
|
|
1702
1934
|
visibility: hidden;
|
|
1703
1935
|
position: fixed;
|
|
@@ -1708,17 +1940,40 @@ div.modal-dialog {
|
|
|
1708
1940
|
z-index: 10;
|
|
1709
1941
|
background-color: rgba(32, 32, 32, 0.2);
|
|
1710
1942
|
}
|
|
1943
|
+
|
|
1711
1944
|
div.modal-dialog#spinner-dialog {
|
|
1712
1945
|
background-color: rgba(255, 255, 255, 0.4);
|
|
1713
1946
|
}
|
|
1947
|
+
|
|
1714
1948
|
div.animated-spinner {
|
|
1715
|
-
position:
|
|
1716
|
-
|
|
1717
|
-
|
|
1949
|
+
position: fixed;
|
|
1950
|
+
top: min(360px, 50vh);
|
|
1951
|
+
left: 50%;
|
|
1952
|
+
width: 120px;
|
|
1953
|
+
height: 120px;
|
|
1954
|
+
transform: translate(-50%, -50%);
|
|
1955
|
+
z-index: 100;
|
|
1956
|
+
}
|
|
1957
|
+
|
|
1958
|
+
@keyframes oscillate {
|
|
1959
|
+
0% { transform: rotate(0deg); }
|
|
1960
|
+
25% { transform: rotate(30deg); }
|
|
1961
|
+
50% { transform: rotate(0deg); }
|
|
1962
|
+
75% { transform: rotate(-30deg); }
|
|
1963
|
+
100% { transform: rotate(0deg); }
|
|
1718
1964
|
}
|
|
1965
|
+
|
|
1966
|
+
div.animated-netskrafl-logo {
|
|
1967
|
+
display: inline-block;
|
|
1968
|
+
aspect-ratio: 1;
|
|
1969
|
+
transform-origin: center center;
|
|
1970
|
+
animation: oscillate 2s ease-in-out infinite;
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1719
1973
|
svg circle.shadow {
|
|
1720
1974
|
filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));
|
|
1721
1975
|
}
|
|
1976
|
+
|
|
1722
1977
|
.std-form {
|
|
1723
1978
|
position: absolute;
|
|
1724
1979
|
padding-left: 12px;
|
|
@@ -1730,6 +1985,7 @@ svg circle.shadow {
|
|
|
1730
1985
|
z-index: 20;
|
|
1731
1986
|
background-color: var(--container-bg-color);
|
|
1732
1987
|
}
|
|
1988
|
+
|
|
1733
1989
|
div#blank-form {
|
|
1734
1990
|
position: absolute;
|
|
1735
1991
|
padding-left: 12px;
|
|
@@ -1746,6 +2002,7 @@ div#blank-form {
|
|
|
1746
2002
|
height: 400px;
|
|
1747
2003
|
background-color: var(--board-background);
|
|
1748
2004
|
}
|
|
2005
|
+
|
|
1749
2006
|
.bottom-message {
|
|
1750
2007
|
position: absolute;
|
|
1751
2008
|
text-align: right;
|
|
@@ -1765,6 +2022,7 @@ div#blank-form {
|
|
|
1765
2022
|
transform-origin: left top;
|
|
1766
2023
|
animation: slidein 0.4s;
|
|
1767
2024
|
}
|
|
2025
|
+
|
|
1768
2026
|
.bold-bottom-message {
|
|
1769
2027
|
position: absolute;
|
|
1770
2028
|
text-align: right;
|
|
@@ -1787,6 +2045,7 @@ div#blank-form {
|
|
|
1787
2045
|
color: white;
|
|
1788
2046
|
border-radius: 4px;
|
|
1789
2047
|
}
|
|
2048
|
+
|
|
1790
2049
|
div.error {
|
|
1791
2050
|
position: absolute;
|
|
1792
2051
|
text-align: right;
|
|
@@ -1811,19 +2070,24 @@ div.error {
|
|
|
1811
2070
|
background-color: var(--cancel-button);
|
|
1812
2071
|
cursor: pointer;
|
|
1813
2072
|
}
|
|
2073
|
+
|
|
1814
2074
|
div.opp-turn {
|
|
1815
|
-
display: block;
|
|
2075
|
+
display: inline-block;
|
|
1816
2076
|
padding-top: 10px;
|
|
1817
|
-
|
|
2077
|
+
padding-left: 10px;
|
|
2078
|
+
width: 220px;
|
|
2079
|
+
text-align: right;
|
|
1818
2080
|
}
|
|
2081
|
+
|
|
1819
2082
|
div.opp-turn.flashing {
|
|
1820
2083
|
color: var(--cancel-button);
|
|
1821
2084
|
transition: 0.1s;
|
|
1822
2085
|
transform: scale(1.1);
|
|
1823
|
-
transform-origin: center
|
|
2086
|
+
transform-origin: center right;
|
|
1824
2087
|
animation: redBlink 0.4s;
|
|
1825
2088
|
animation-iteration-count: 2;
|
|
1826
2089
|
}
|
|
2090
|
+
|
|
1827
2091
|
div#congrats,
|
|
1828
2092
|
div#gameover {
|
|
1829
2093
|
position: absolute;
|
|
@@ -1849,14 +2113,17 @@ div#gameover {
|
|
|
1849
2113
|
text-align: center;
|
|
1850
2114
|
padding-bottom: 0px;
|
|
1851
2115
|
}
|
|
2116
|
+
|
|
1852
2117
|
div#congrats span.glyphicon-bookmark {
|
|
1853
2118
|
padding-right: 2px;
|
|
1854
2119
|
color: var(--ok-button);
|
|
1855
2120
|
}
|
|
2121
|
+
|
|
1856
2122
|
div#gameover span.glyphicon-info-sign {
|
|
1857
2123
|
padding-right: 4px;
|
|
1858
2124
|
color: var(--triple-letter-color);
|
|
1859
2125
|
}
|
|
2126
|
+
|
|
1860
2127
|
div.resign {
|
|
1861
2128
|
position: absolute;
|
|
1862
2129
|
text-align: right;
|
|
@@ -1880,6 +2147,7 @@ div.resign {
|
|
|
1880
2147
|
border-radius: 4px;
|
|
1881
2148
|
background-color: var(--cancel-button);
|
|
1882
2149
|
}
|
|
2150
|
+
|
|
1883
2151
|
div.pass {
|
|
1884
2152
|
position: absolute;
|
|
1885
2153
|
text-align: right;
|
|
@@ -1903,6 +2171,7 @@ div.pass {
|
|
|
1903
2171
|
border-radius: 4px;
|
|
1904
2172
|
background-color: var(--triple-word-color);
|
|
1905
2173
|
}
|
|
2174
|
+
|
|
1906
2175
|
div.pass-last {
|
|
1907
2176
|
position: absolute;
|
|
1908
2177
|
text-align: right;
|
|
@@ -1926,6 +2195,7 @@ div.pass-last {
|
|
|
1926
2195
|
border-radius: 4px;
|
|
1927
2196
|
background-color: var(--triple-word-color);
|
|
1928
2197
|
}
|
|
2198
|
+
|
|
1929
2199
|
div.chall {
|
|
1930
2200
|
position: absolute;
|
|
1931
2201
|
text-align: right;
|
|
@@ -1949,6 +2219,7 @@ div.chall {
|
|
|
1949
2219
|
border-radius: 4px;
|
|
1950
2220
|
background-color: var(--triple-letter-color);
|
|
1951
2221
|
}
|
|
2222
|
+
|
|
1952
2223
|
div.chall-info {
|
|
1953
2224
|
position: absolute;
|
|
1954
2225
|
text-align: right;
|
|
@@ -1976,6 +2247,7 @@ div.chall-info {
|
|
|
1976
2247
|
width: 311px;
|
|
1977
2248
|
padding: 2px 24px 0px;
|
|
1978
2249
|
}
|
|
2250
|
+
|
|
1979
2251
|
div.exchange {
|
|
1980
2252
|
position: absolute;
|
|
1981
2253
|
text-align: right;
|
|
@@ -1999,6 +2271,7 @@ div.exchange {
|
|
|
1999
2271
|
border-radius: 4px;
|
|
2000
2272
|
background-color: var(--ok-button);
|
|
2001
2273
|
}
|
|
2274
|
+
|
|
2002
2275
|
div.submitmove#move-mobile {
|
|
2003
2276
|
display: flex;
|
|
2004
2277
|
flex-direction: row;
|
|
@@ -2014,14 +2287,17 @@ div.submitmove#move-mobile {
|
|
|
2014
2287
|
padding-right: 10px;
|
|
2015
2288
|
padding-top: 6px;
|
|
2016
2289
|
}
|
|
2290
|
+
|
|
2017
2291
|
div.submitmove#move-mobile.manual {
|
|
2018
2292
|
background-color: var(--double-letter-color);
|
|
2019
2293
|
color: white;
|
|
2020
2294
|
}
|
|
2295
|
+
|
|
2021
2296
|
div.submitmove#move-mobile.word-good {
|
|
2022
2297
|
background-color: var(--ok-button);
|
|
2023
2298
|
color: white;
|
|
2024
2299
|
}
|
|
2300
|
+
|
|
2025
2301
|
@keyframes colorPulseMobile {
|
|
2026
2302
|
0% {
|
|
2027
2303
|
transform: scale(1);
|
|
@@ -2036,6 +2312,7 @@ div.submitmove#move-mobile.word-good {
|
|
|
2036
2312
|
transform: scale(1);
|
|
2037
2313
|
}
|
|
2038
2314
|
}
|
|
2315
|
+
|
|
2039
2316
|
@-webkit-keyframes colorPulseMobile {
|
|
2040
2317
|
0% {
|
|
2041
2318
|
transform: scale(1);
|
|
@@ -2050,43 +2327,42 @@ div.submitmove#move-mobile.word-good {
|
|
|
2050
2327
|
transform: scale(1);
|
|
2051
2328
|
}
|
|
2052
2329
|
}
|
|
2330
|
+
|
|
2053
2331
|
span.score-mobile {
|
|
2054
2332
|
display: inline-block;
|
|
2055
2333
|
font-weight: 400;
|
|
2056
2334
|
font-size: 22px;
|
|
2057
2335
|
line-height: 22px;
|
|
2058
2336
|
}
|
|
2337
|
+
|
|
2059
2338
|
div.submitmove#move-mobile.word-great span.score-mobile {
|
|
2060
2339
|
animation: colorPulseMobile 1.5s infinite;
|
|
2061
2340
|
-webkit-animation: colorPulseMobile 1.5s infinite;
|
|
2062
2341
|
}
|
|
2342
|
+
|
|
2063
2343
|
div.submitmove#move-mobile span.glyphicon {
|
|
2064
2344
|
top: 0px;
|
|
2065
2345
|
margin-top: 2px;
|
|
2066
2346
|
}
|
|
2347
|
+
|
|
2067
2348
|
div.force-resign {
|
|
2068
|
-
|
|
2069
|
-
|
|
2349
|
+
display: inline-flex;
|
|
2350
|
+
flex-direction: column;
|
|
2351
|
+
align-items: center;
|
|
2352
|
+
justify-content: center;
|
|
2353
|
+
font-weight: normal;
|
|
2354
|
+
font-size: 13px;
|
|
2070
2355
|
margin: 0;
|
|
2071
2356
|
padding: 6px;
|
|
2072
|
-
padding-top: 9px;
|
|
2073
|
-
border-radius: 5px;
|
|
2074
2357
|
cursor: pointer;
|
|
2075
|
-
width: 32px;
|
|
2076
2358
|
height: 26px;
|
|
2077
|
-
|
|
2078
|
-
display: block;
|
|
2079
|
-
float: right;
|
|
2080
|
-
padding-top: 3px;
|
|
2081
|
-
padding-bottom: 12px;
|
|
2359
|
+
width: 122px;
|
|
2082
2360
|
margin-right: 1px;
|
|
2083
|
-
width: 96px;
|
|
2084
|
-
text-align: center;
|
|
2085
|
-
font-weight: normal;
|
|
2086
|
-
font-size: 13px;
|
|
2087
2361
|
color: white;
|
|
2088
2362
|
background-color: var(--cancel-button);
|
|
2363
|
+
border-radius: 5px;
|
|
2089
2364
|
}
|
|
2365
|
+
|
|
2090
2366
|
div.gameinfo {
|
|
2091
2367
|
position: absolute;
|
|
2092
2368
|
text-align: right;
|
|
@@ -2112,22 +2388,32 @@ div.gameinfo {
|
|
|
2112
2388
|
color: white;
|
|
2113
2389
|
padding-top: 10px;
|
|
2114
2390
|
}
|
|
2391
|
+
|
|
2115
2392
|
input.chat-txt {
|
|
2116
|
-
|
|
2117
|
-
|
|
2393
|
+
box-sizing: border-box;
|
|
2394
|
+
/* font-family: var(--primary-font); */
|
|
2395
|
+
width: 292px;
|
|
2118
2396
|
font-size: 18px;
|
|
2119
|
-
height:
|
|
2397
|
+
height: 32px;
|
|
2120
2398
|
font-weight: normal;
|
|
2121
2399
|
border-style: solid;
|
|
2122
|
-
border-color: var(--
|
|
2400
|
+
border-color: var(--header-color);
|
|
2123
2401
|
border-width: 1px;
|
|
2124
2402
|
border-radius: 3px;
|
|
2125
|
-
margin-top: 1px;
|
|
2126
2403
|
padding-top: 4px;
|
|
2127
2404
|
padding-bottom: 3px;
|
|
2128
2405
|
padding-left: 6px;
|
|
2129
2406
|
padding-right: 6px;
|
|
2130
2407
|
}
|
|
2408
|
+
|
|
2409
|
+
input.chat-txt:focus {
|
|
2410
|
+
border-color: var(--header-color);
|
|
2411
|
+
border-width: 2px;
|
|
2412
|
+
padding-left: 5px;
|
|
2413
|
+
padding-right: 5px;
|
|
2414
|
+
outline-style: none;
|
|
2415
|
+
}
|
|
2416
|
+
|
|
2131
2417
|
div.chat-area {
|
|
2132
2418
|
position: absolute;
|
|
2133
2419
|
top: 6px;
|
|
@@ -2137,6 +2423,7 @@ div.chat-area {
|
|
|
2137
2423
|
padding: 6px;
|
|
2138
2424
|
overflow: auto;
|
|
2139
2425
|
}
|
|
2426
|
+
|
|
2140
2427
|
div.modal-close#chat-send {
|
|
2141
2428
|
display: inline-block;
|
|
2142
2429
|
position: relative;
|
|
@@ -2148,9 +2435,14 @@ div.modal-close#chat-send {
|
|
|
2148
2435
|
margin: 0 0 2px 8px;
|
|
2149
2436
|
padding-top: 4px;
|
|
2150
2437
|
padding-bottom: 0;
|
|
2151
|
-
background-color: var(--
|
|
2438
|
+
background-color: var(--header-color);
|
|
2152
2439
|
color: white;
|
|
2153
2440
|
}
|
|
2441
|
+
|
|
2442
|
+
div.modal-close#chat-send span.glyphicon {
|
|
2443
|
+
top: 4px;
|
|
2444
|
+
}
|
|
2445
|
+
|
|
2154
2446
|
div.twoletter {
|
|
2155
2447
|
position: absolute;
|
|
2156
2448
|
top: 0px;
|
|
@@ -2162,6 +2454,7 @@ div.twoletter {
|
|
|
2162
2454
|
z-index: 3;
|
|
2163
2455
|
border-radius: 4px 4px 0 0;
|
|
2164
2456
|
}
|
|
2457
|
+
|
|
2165
2458
|
div.twoletter-area {
|
|
2166
2459
|
position: absolute;
|
|
2167
2460
|
top: 0;
|
|
@@ -2175,17 +2468,21 @@ div.twoletter-area {
|
|
|
2175
2468
|
margin-top: 12px;
|
|
2176
2469
|
cursor: pointer;
|
|
2177
2470
|
}
|
|
2471
|
+
|
|
2178
2472
|
div.twoletter-area#two-2 {
|
|
2179
2473
|
visibility: hidden;
|
|
2180
2474
|
}
|
|
2475
|
+
|
|
2181
2476
|
div.twoletter-group {
|
|
2182
2477
|
display: inline-block;
|
|
2183
2478
|
margin-right: 5px;
|
|
2184
2479
|
}
|
|
2480
|
+
|
|
2185
2481
|
div.twoletter-word {
|
|
2186
2482
|
display: inline-block;
|
|
2187
2483
|
padding-right: 4px;
|
|
2188
2484
|
}
|
|
2485
|
+
|
|
2189
2486
|
div.twoletter-word b {
|
|
2190
2487
|
background-color: var(--ok-button);
|
|
2191
2488
|
color: white;
|
|
@@ -2193,15 +2490,19 @@ div.twoletter-word b {
|
|
|
2193
2490
|
padding-right: 2px;
|
|
2194
2491
|
border-radius: 2px;
|
|
2195
2492
|
}
|
|
2493
|
+
|
|
2196
2494
|
span.statsbutton {
|
|
2197
2495
|
display: none;
|
|
2198
2496
|
}
|
|
2497
|
+
|
|
2199
2498
|
div#ready-toggler {
|
|
2200
2499
|
display: none;
|
|
2201
2500
|
}
|
|
2501
|
+
|
|
2202
2502
|
div#timed-toggler {
|
|
2203
2503
|
display: none;
|
|
2204
2504
|
}
|
|
2505
|
+
|
|
2205
2506
|
div.help-container img {
|
|
2206
2507
|
/* On mobile, scale images in help text down to fit the column width */
|
|
2207
2508
|
max-width: 100%;
|
|
@@ -2209,39 +2510,47 @@ div.help-container img {
|
|
|
2209
2510
|
object-fit: scale-down;
|
|
2210
2511
|
display: inline;
|
|
2211
2512
|
}
|
|
2513
|
+
|
|
2212
2514
|
div#tabs,
|
|
2213
2515
|
div#main-tabs {
|
|
2214
2516
|
border-width: 0;
|
|
2215
2517
|
padding: 0;
|
|
2216
2518
|
}
|
|
2519
|
+
|
|
2217
2520
|
div#tabs > div[role=tabpanel],
|
|
2218
2521
|
div#main-tabs > div[role=tabpanel] {
|
|
2219
2522
|
position: relative;
|
|
2220
2523
|
top: -8px;
|
|
2221
2524
|
height: 504px;
|
|
2222
2525
|
}
|
|
2526
|
+
|
|
2223
2527
|
div#main-tabs div.header-logo {
|
|
2224
|
-
padding-left:
|
|
2225
|
-
padding-right:
|
|
2226
|
-
padding-top:
|
|
2528
|
+
padding-left: 8px;
|
|
2529
|
+
padding-right: 4px;
|
|
2530
|
+
padding-top: 12px;
|
|
2227
2531
|
}
|
|
2532
|
+
|
|
2228
2533
|
div#tabs {
|
|
2229
2534
|
background-color: transparent;
|
|
2230
2535
|
}
|
|
2536
|
+
|
|
2231
2537
|
div.userid {
|
|
2232
2538
|
display: none;
|
|
2233
2539
|
}
|
|
2540
|
+
|
|
2234
2541
|
span.list-ts {
|
|
2235
2542
|
display: none;
|
|
2236
2543
|
width: 164px;
|
|
2237
2544
|
max-width: 164px;
|
|
2238
2545
|
}
|
|
2546
|
+
|
|
2239
2547
|
span.list-ts-short {
|
|
2240
2548
|
display: none;
|
|
2241
2549
|
padding-left: 4px;
|
|
2242
2550
|
width: 144px;
|
|
2243
2551
|
max-width: 144px;
|
|
2244
2552
|
}
|
|
2553
|
+
|
|
2245
2554
|
span.list-chall {
|
|
2246
2555
|
display: inline-block;
|
|
2247
2556
|
width: 184px;
|
|
@@ -2249,24 +2558,28 @@ span.list-chall {
|
|
|
2249
2558
|
overflow: hidden;
|
|
2250
2559
|
text-overflow: ellipsis;
|
|
2251
2560
|
}
|
|
2561
|
+
|
|
2252
2562
|
span.list-s0 {
|
|
2253
|
-
display: inline-block;
|
|
2254
2563
|
width: 38px;
|
|
2255
2564
|
max-width: 38px;
|
|
2256
2565
|
text-align: right;
|
|
2566
|
+
justify-content: flex-end;
|
|
2257
2567
|
}
|
|
2568
|
+
|
|
2258
2569
|
span.list-s1 {
|
|
2259
|
-
display: inline-block;
|
|
2260
2570
|
width: 38px;
|
|
2261
2571
|
max-width: 38px;
|
|
2262
2572
|
text-align: left;
|
|
2573
|
+
justify-content: flex-start;
|
|
2263
2574
|
}
|
|
2575
|
+
|
|
2264
2576
|
span.list-colon {
|
|
2265
|
-
|
|
2577
|
+
justify-content: center;
|
|
2266
2578
|
text-align: center;
|
|
2267
2579
|
width: 8px;
|
|
2268
2580
|
max-width: 8px;
|
|
2269
2581
|
}
|
|
2582
|
+
|
|
2270
2583
|
span.list-scorehdr {
|
|
2271
2584
|
display: inline-block;
|
|
2272
2585
|
width: 84px;
|
|
@@ -2274,6 +2587,7 @@ span.list-scorehdr {
|
|
|
2274
2587
|
max-width: 84px;
|
|
2275
2588
|
text-align: center;
|
|
2276
2589
|
}
|
|
2590
|
+
|
|
2277
2591
|
div.list-elo-adj {
|
|
2278
2592
|
display: inline-flex;
|
|
2279
2593
|
flex-direction: column;
|
|
@@ -2284,6 +2598,7 @@ div.list-elo-adj {
|
|
|
2284
2598
|
text-align: center;
|
|
2285
2599
|
text-overflow: clip;
|
|
2286
2600
|
}
|
|
2601
|
+
|
|
2287
2602
|
span.list-elo-hdr {
|
|
2288
2603
|
display: inline-block;
|
|
2289
2604
|
width: 104px;
|
|
@@ -2291,6 +2606,7 @@ span.list-elo-hdr {
|
|
|
2291
2606
|
max-width: 104px;
|
|
2292
2607
|
text-align: center;
|
|
2293
2608
|
}
|
|
2609
|
+
|
|
2294
2610
|
span.list-tc {
|
|
2295
2611
|
display: inline-block;
|
|
2296
2612
|
width: 84px;
|
|
@@ -2298,6 +2614,7 @@ span.list-tc {
|
|
|
2298
2614
|
text-align: left;
|
|
2299
2615
|
padding-right: 0;
|
|
2300
2616
|
}
|
|
2617
|
+
|
|
2301
2618
|
div.tilecount {
|
|
2302
2619
|
display: inline-block;
|
|
2303
2620
|
vertical-align: middle;
|
|
@@ -2307,22 +2624,26 @@ div.tilecount {
|
|
|
2307
2624
|
width: 92px;
|
|
2308
2625
|
min-width: 92px;
|
|
2309
2626
|
text-align: left;
|
|
2310
|
-
background-color:
|
|
2627
|
+
background-color: white;
|
|
2311
2628
|
border-radius: 6px;
|
|
2312
2629
|
overflow: hidden;
|
|
2313
2630
|
}
|
|
2631
|
+
|
|
2314
2632
|
div.tc {
|
|
2315
2633
|
display: inline-block;
|
|
2316
2634
|
text-align: left;
|
|
2317
2635
|
background-color: var(--ok-button);
|
|
2318
2636
|
}
|
|
2637
|
+
|
|
2319
2638
|
div.tc.losing {
|
|
2320
2639
|
background-color: var(--cancel-button);
|
|
2321
2640
|
}
|
|
2641
|
+
|
|
2322
2642
|
div.tc:before {
|
|
2323
2643
|
content: "\A0";
|
|
2324
2644
|
/* Invisible space */
|
|
2325
2645
|
}
|
|
2646
|
+
|
|
2326
2647
|
div#userlist span.list-ch,
|
|
2327
2648
|
div#elolist span.list-ch,
|
|
2328
2649
|
div#chall-received span.list-ch,
|
|
@@ -2330,6 +2651,7 @@ div#chall-sent span.list-ch,
|
|
|
2330
2651
|
div#userlist span.list-fav {
|
|
2331
2652
|
cursor: pointer;
|
|
2332
2653
|
}
|
|
2654
|
+
|
|
2333
2655
|
span.list-ch,
|
|
2334
2656
|
span.list-fav,
|
|
2335
2657
|
span.list-icon,
|
|
@@ -2342,10 +2664,12 @@ span.list-overdue {
|
|
|
2342
2664
|
overflow: hidden;
|
|
2343
2665
|
margin-left: 2px;
|
|
2344
2666
|
}
|
|
2667
|
+
|
|
2345
2668
|
span.list-overdue,
|
|
2346
2669
|
span.list-fav {
|
|
2347
2670
|
display: none;
|
|
2348
2671
|
}
|
|
2672
|
+
|
|
2349
2673
|
span.list-newbag {
|
|
2350
2674
|
display: none;
|
|
2351
2675
|
font-size: 18px;
|
|
@@ -2354,6 +2678,7 @@ span.list-newbag {
|
|
|
2354
2678
|
max-width: 22px;
|
|
2355
2679
|
margin-left: 14px;
|
|
2356
2680
|
}
|
|
2681
|
+
|
|
2357
2682
|
span.list-manual {
|
|
2358
2683
|
display: none;
|
|
2359
2684
|
font-size: 18px;
|
|
@@ -2362,6 +2687,7 @@ span.list-manual {
|
|
|
2362
2687
|
max-width: 26px;
|
|
2363
2688
|
margin-left: 14px;
|
|
2364
2689
|
}
|
|
2690
|
+
|
|
2365
2691
|
span.list-win {
|
|
2366
2692
|
display: inline-block;
|
|
2367
2693
|
font-size: 18px;
|
|
@@ -2369,28 +2695,33 @@ span.list-win {
|
|
|
2369
2695
|
max-width: 26px;
|
|
2370
2696
|
margin-left: 0;
|
|
2371
2697
|
}
|
|
2698
|
+
|
|
2372
2699
|
span.list-nick {
|
|
2373
2700
|
display: inline-block;
|
|
2374
2701
|
width: 140px;
|
|
2375
2702
|
min-width: 140px;
|
|
2376
2703
|
overflow: hidden;
|
|
2377
2704
|
}
|
|
2705
|
+
|
|
2378
2706
|
span.list-nick-elo {
|
|
2379
2707
|
display: inline-block;
|
|
2380
2708
|
width: 150px;
|
|
2381
2709
|
max-width: 150px;
|
|
2382
2710
|
}
|
|
2711
|
+
|
|
2383
2712
|
span.list-opp {
|
|
2384
2713
|
display: inline-block;
|
|
2385
2714
|
width: 150px;
|
|
2386
2715
|
max-width: 150px;
|
|
2387
2716
|
}
|
|
2717
|
+
|
|
2388
2718
|
span.list-fullname {
|
|
2389
2719
|
display: inline-block;
|
|
2390
2720
|
width: 400px;
|
|
2391
2721
|
min-width: 400px;
|
|
2392
2722
|
overflow: hidden;
|
|
2393
2723
|
}
|
|
2724
|
+
|
|
2394
2725
|
span.list-fullname-robot {
|
|
2395
2726
|
display: inline-block;
|
|
2396
2727
|
font-size: 14px;
|
|
@@ -2401,6 +2732,7 @@ span.list-fullname-robot {
|
|
|
2401
2732
|
overflow: hidden;
|
|
2402
2733
|
text-overflow: ellipsis;
|
|
2403
2734
|
}
|
|
2735
|
+
|
|
2404
2736
|
span.list-human-elo {
|
|
2405
2737
|
display: inline-block;
|
|
2406
2738
|
width: 40px;
|
|
@@ -2408,18 +2740,21 @@ span.list-human-elo {
|
|
|
2408
2740
|
text-align: center;
|
|
2409
2741
|
margin-right: 6px;
|
|
2410
2742
|
}
|
|
2743
|
+
|
|
2411
2744
|
span.list-duration {
|
|
2412
2745
|
display: none;
|
|
2413
2746
|
width: 192px;
|
|
2414
2747
|
max-width: 192px;
|
|
2415
2748
|
text-align: right;
|
|
2416
2749
|
}
|
|
2750
|
+
|
|
2417
2751
|
span.list-info-hdr {
|
|
2418
2752
|
display: none;
|
|
2419
2753
|
width: 52px;
|
|
2420
2754
|
max-width: 52px;
|
|
2421
2755
|
text-align: center;
|
|
2422
2756
|
}
|
|
2757
|
+
|
|
2423
2758
|
span.list-info {
|
|
2424
2759
|
display: none;
|
|
2425
2760
|
width: 52px;
|
|
@@ -2428,6 +2763,7 @@ span.list-info {
|
|
|
2428
2763
|
height: 24px;
|
|
2429
2764
|
line-height: 20px;
|
|
2430
2765
|
}
|
|
2766
|
+
|
|
2431
2767
|
span.list-rank {
|
|
2432
2768
|
display: inline-block;
|
|
2433
2769
|
width: 36px;
|
|
@@ -2435,6 +2771,7 @@ span.list-rank {
|
|
|
2435
2771
|
text-align: center;
|
|
2436
2772
|
margin-right: 8px;
|
|
2437
2773
|
}
|
|
2774
|
+
|
|
2438
2775
|
span.list-rank-no-mobile {
|
|
2439
2776
|
display: none;
|
|
2440
2777
|
width: 32px;
|
|
@@ -2442,6 +2779,7 @@ span.list-rank-no-mobile {
|
|
|
2442
2779
|
text-align: center;
|
|
2443
2780
|
margin-right: 10px;
|
|
2444
2781
|
}
|
|
2782
|
+
|
|
2445
2783
|
span.list-elo {
|
|
2446
2784
|
display: inline-block;
|
|
2447
2785
|
width: 40px;
|
|
@@ -2449,6 +2787,7 @@ span.list-elo {
|
|
|
2449
2787
|
text-align: center;
|
|
2450
2788
|
margin-right: 10px;
|
|
2451
2789
|
}
|
|
2790
|
+
|
|
2452
2791
|
span.list-elo-no-mobile {
|
|
2453
2792
|
display: none;
|
|
2454
2793
|
width: 40px;
|
|
@@ -2456,6 +2795,7 @@ span.list-elo-no-mobile {
|
|
|
2456
2795
|
text-align: center;
|
|
2457
2796
|
margin-right: 10px;
|
|
2458
2797
|
}
|
|
2798
|
+
|
|
2459
2799
|
span.list-games {
|
|
2460
2800
|
display: none;
|
|
2461
2801
|
width: 48px;
|
|
@@ -2463,6 +2803,7 @@ span.list-games {
|
|
|
2463
2803
|
text-align: right;
|
|
2464
2804
|
margin-right: 10px;
|
|
2465
2805
|
}
|
|
2806
|
+
|
|
2466
2807
|
span.list-ratio {
|
|
2467
2808
|
display: none;
|
|
2468
2809
|
width: 40px;
|
|
@@ -2470,6 +2811,7 @@ span.list-ratio {
|
|
|
2470
2811
|
text-align: right;
|
|
2471
2812
|
margin-right: 10px;
|
|
2472
2813
|
}
|
|
2814
|
+
|
|
2473
2815
|
span.list-avgpts {
|
|
2474
2816
|
display: none;
|
|
2475
2817
|
width: 36px;
|
|
@@ -2477,22 +2819,28 @@ span.list-avgpts {
|
|
|
2477
2819
|
text-align: right;
|
|
2478
2820
|
margin-right: 16px;
|
|
2479
2821
|
}
|
|
2822
|
+
|
|
2480
2823
|
span.mobile-break {
|
|
2481
2824
|
display: inline;
|
|
2482
2825
|
}
|
|
2826
|
+
|
|
2483
2827
|
.tab-legend {
|
|
2484
2828
|
display: none;
|
|
2485
2829
|
font-weight: normal;
|
|
2486
2830
|
}
|
|
2831
|
+
|
|
2487
2832
|
div.user-cat span#break {
|
|
2488
2833
|
display: inline;
|
|
2489
2834
|
}
|
|
2835
|
+
|
|
2490
2836
|
div.user-cat#user-headings {
|
|
2491
2837
|
line-height: 32px;
|
|
2492
2838
|
}
|
|
2839
|
+
|
|
2493
2840
|
div.user-cat#user-search {
|
|
2494
2841
|
display: none;
|
|
2495
2842
|
}
|
|
2843
|
+
|
|
2496
2844
|
div#chall-form {
|
|
2497
2845
|
position: absolute;
|
|
2498
2846
|
padding-left: 12px;
|
|
@@ -2515,6 +2863,7 @@ div#chall-form {
|
|
|
2515
2863
|
height: 352px;
|
|
2516
2864
|
font-size: 0.85em;
|
|
2517
2865
|
}
|
|
2866
|
+
|
|
2518
2867
|
div#chall-fairplay {
|
|
2519
2868
|
margin-top: 10px;
|
|
2520
2869
|
padding-left: 0;
|
|
@@ -2522,27 +2871,33 @@ div#chall-fairplay {
|
|
|
2522
2871
|
font-size: 14px;
|
|
2523
2872
|
text-align: right;
|
|
2524
2873
|
}
|
|
2874
|
+
|
|
2525
2875
|
div#chall-oldbag {
|
|
2526
2876
|
position: absolute;
|
|
2527
2877
|
bottom: 16px;
|
|
2528
2878
|
font-size: 14px;
|
|
2529
2879
|
}
|
|
2880
|
+
|
|
2530
2881
|
div#chall-oldbag td span.glyphicon-exclamation-sign {
|
|
2531
2882
|
color: var(--cancel-button);
|
|
2532
2883
|
padding-right: 8px;
|
|
2533
2884
|
}
|
|
2885
|
+
|
|
2534
2886
|
span.caption.wide {
|
|
2535
2887
|
width: 200px;
|
|
2536
2888
|
}
|
|
2889
|
+
|
|
2537
2890
|
div#manual-toggler {
|
|
2538
2891
|
display: inline-block;
|
|
2539
2892
|
}
|
|
2893
|
+
|
|
2540
2894
|
div#chall-ok {
|
|
2541
2895
|
right: 12px;
|
|
2542
2896
|
width: 72px;
|
|
2543
2897
|
/* Override */
|
|
2544
2898
|
background-color: var(--ok-button);
|
|
2545
2899
|
}
|
|
2900
|
+
|
|
2546
2901
|
div#chall-cancel {
|
|
2547
2902
|
right: 108px;
|
|
2548
2903
|
/* 12 + 72 + 12 + 12 */
|
|
@@ -2550,9 +2905,11 @@ div#chall-cancel {
|
|
|
2550
2905
|
/* Override */
|
|
2551
2906
|
background-color: var(--cancel-button);
|
|
2552
2907
|
}
|
|
2908
|
+
|
|
2553
2909
|
div.user-cat#user-headings span {
|
|
2554
2910
|
white-space: nowrap;
|
|
2555
2911
|
}
|
|
2912
|
+
|
|
2556
2913
|
div#user-load {
|
|
2557
2914
|
display: none;
|
|
2558
2915
|
position: absolute;
|
|
@@ -2561,10 +2918,14 @@ div#user-load {
|
|
|
2561
2918
|
width: 24px;
|
|
2562
2919
|
height: 24px;
|
|
2563
2920
|
z-index: 10;
|
|
2921
|
+
/*
|
|
2922
|
+
!!! TODO:
|
|
2564
2923
|
background-image: url('user-loader.gif');
|
|
2565
2924
|
background-repeat: no-repeat;
|
|
2566
2925
|
background-size: 24px 24px;
|
|
2926
|
+
*/
|
|
2567
2927
|
}
|
|
2928
|
+
|
|
2568
2929
|
div#promo-form {
|
|
2569
2930
|
position: absolute;
|
|
2570
2931
|
padding-left: 12px;
|
|
@@ -2581,17 +2942,21 @@ div#promo-form {
|
|
|
2581
2942
|
height: 364px;
|
|
2582
2943
|
line-height: 1.5em;
|
|
2583
2944
|
}
|
|
2945
|
+
|
|
2584
2946
|
div.promo-content {
|
|
2585
2947
|
margin-top: 16px;
|
|
2586
2948
|
margin-left: 16px;
|
|
2587
2949
|
margin-right: 16px;
|
|
2588
2950
|
}
|
|
2951
|
+
|
|
2589
2952
|
div.promo-fullscreen {
|
|
2590
2953
|
display: none;
|
|
2591
2954
|
}
|
|
2955
|
+
|
|
2592
2956
|
div.promo-mobile {
|
|
2593
2957
|
display: block;
|
|
2594
2958
|
}
|
|
2959
|
+
|
|
2595
2960
|
div.btn-promo-yes {
|
|
2596
2961
|
text-align: center;
|
|
2597
2962
|
font-size: 18px;
|
|
@@ -2610,6 +2975,7 @@ div.btn-promo-yes {
|
|
|
2610
2975
|
top: auto;
|
|
2611
2976
|
background-color: var(--ok-button);
|
|
2612
2977
|
}
|
|
2978
|
+
|
|
2613
2979
|
div.btn-promo-no {
|
|
2614
2980
|
text-align: center;
|
|
2615
2981
|
font-size: 18px;
|
|
@@ -2628,6 +2994,7 @@ div.btn-promo-no {
|
|
|
2628
2994
|
top: auto;
|
|
2629
2995
|
background-color: var(--ok-button);
|
|
2630
2996
|
}
|
|
2997
|
+
|
|
2631
2998
|
div #userlist,
|
|
2632
2999
|
div #elolist {
|
|
2633
3000
|
height: 396px;
|
|
@@ -2635,24 +3002,28 @@ div #elolist {
|
|
|
2635
3002
|
overflow-y: auto;
|
|
2636
3003
|
overflow-x: hidden;
|
|
2637
3004
|
}
|
|
3005
|
+
|
|
2638
3006
|
div #gamelist {
|
|
2639
3007
|
height: 468px;
|
|
2640
3008
|
/* 13 lines @ 36px each */
|
|
2641
3009
|
overflow-y: auto;
|
|
2642
3010
|
overflow-x: hidden;
|
|
2643
3011
|
}
|
|
3012
|
+
|
|
2644
3013
|
div #recentlist {
|
|
2645
3014
|
height: 396px;
|
|
2646
3015
|
/* 11 lines @ 36px each */
|
|
2647
3016
|
overflow-y: auto;
|
|
2648
3017
|
overflow-x: hidden;
|
|
2649
3018
|
}
|
|
3019
|
+
|
|
2650
3020
|
div #usr-recent {
|
|
2651
3021
|
height: 432px;
|
|
2652
3022
|
/* 12 lines @ 36px each */
|
|
2653
3023
|
overflow-y: auto;
|
|
2654
3024
|
overflow-x: hidden;
|
|
2655
3025
|
}
|
|
3026
|
+
|
|
2656
3027
|
div #chall-sent,
|
|
2657
3028
|
div #chall-received {
|
|
2658
3029
|
height: 216px;
|
|
@@ -2660,6 +3031,7 @@ div #chall-received {
|
|
|
2660
3031
|
overflow-y: auto;
|
|
2661
3032
|
overflow-x: hidden;
|
|
2662
3033
|
}
|
|
3034
|
+
|
|
2663
3035
|
div.games {
|
|
2664
3036
|
position: absolute;
|
|
2665
3037
|
top: 0;
|
|
@@ -2673,6 +3045,7 @@ div.games {
|
|
|
2673
3045
|
padding-bottom: 12px;
|
|
2674
3046
|
border-radius: 4px 4px 0 0;
|
|
2675
3047
|
}
|
|
3048
|
+
|
|
2676
3049
|
div#wait-form {
|
|
2677
3050
|
position: absolute;
|
|
2678
3051
|
padding-left: 12px;
|
|
@@ -2688,6 +3061,7 @@ div#wait-form {
|
|
|
2688
3061
|
width: 335px;
|
|
2689
3062
|
height: 488px;
|
|
2690
3063
|
}
|
|
3064
|
+
|
|
2691
3065
|
span.move-indicator {
|
|
2692
3066
|
position: relative;
|
|
2693
3067
|
top: 2px;
|
|
@@ -2701,9 +3075,11 @@ span.move-indicator {
|
|
|
2701
3075
|
color: var(--triple-word-color);
|
|
2702
3076
|
margin-right: 4px;
|
|
2703
3077
|
}
|
|
3078
|
+
|
|
2704
3079
|
span.move-indicator:before {
|
|
2705
3080
|
content: "\E267";
|
|
2706
3081
|
}
|
|
3082
|
+
|
|
2707
3083
|
div.hint {
|
|
2708
3084
|
display: none;
|
|
2709
3085
|
position: absolute;
|
|
@@ -2715,6 +3091,7 @@ div.hint {
|
|
|
2715
3091
|
margin-left: 12px;
|
|
2716
3092
|
margin-right: 12px;
|
|
2717
3093
|
}
|
|
3094
|
+
|
|
2718
3095
|
div.stats-box {
|
|
2719
3096
|
font-family: var(--number-font);
|
|
2720
3097
|
width: 224px;
|
|
@@ -2722,6 +3099,7 @@ div.stats-box {
|
|
|
2722
3099
|
top: 0px;
|
|
2723
3100
|
right: -62px;
|
|
2724
3101
|
}
|
|
3102
|
+
|
|
2725
3103
|
div.stats-fig {
|
|
2726
3104
|
display: inline-block;
|
|
2727
3105
|
width: 68px;
|
|
@@ -2743,12 +3121,14 @@ div.stats-fig {
|
|
|
2743
3121
|
margin-left: 2px;
|
|
2744
3122
|
cursor: default;
|
|
2745
3123
|
}
|
|
3124
|
+
|
|
2746
3125
|
div#own-toggler {
|
|
2747
3126
|
position: absolute;
|
|
2748
3127
|
top: 2px;
|
|
2749
3128
|
margin-top: 0;
|
|
2750
3129
|
margin-right: 8px;
|
|
2751
3130
|
}
|
|
3131
|
+
|
|
2752
3132
|
p#own-best {
|
|
2753
3133
|
display: inline-block;
|
|
2754
3134
|
position: absolute;
|
|
@@ -2758,6 +3138,7 @@ p#own-best {
|
|
|
2758
3138
|
text-align: right;
|
|
2759
3139
|
font-size: 0.85em;
|
|
2760
3140
|
}
|
|
3141
|
+
|
|
2761
3142
|
div#own-stats {
|
|
2762
3143
|
position: relative;
|
|
2763
3144
|
margin-top: 2px;
|
|
@@ -2766,14 +3147,18 @@ div#own-stats {
|
|
|
2766
3147
|
width: 100%;
|
|
2767
3148
|
vertical-align: top;
|
|
2768
3149
|
}
|
|
3150
|
+
|
|
2769
3151
|
/* Paragraphs of help text that should be centered on screens that are wide enough */
|
|
3152
|
+
|
|
2770
3153
|
p.help-center {
|
|
2771
3154
|
text-align: left;
|
|
2772
3155
|
}
|
|
3156
|
+
|
|
2773
3157
|
div.racktile {
|
|
2774
3158
|
cursor: pointer;
|
|
2775
3159
|
background-color: white;
|
|
2776
3160
|
}
|
|
3161
|
+
|
|
2777
3162
|
@keyframes selBlink {
|
|
2778
3163
|
0% {
|
|
2779
3164
|
color: white;
|
|
@@ -2796,6 +3181,7 @@ div.racktile {
|
|
|
2796
3181
|
background-color: var(--cancel-button);
|
|
2797
3182
|
}
|
|
2798
3183
|
}
|
|
3184
|
+
|
|
2799
3185
|
@-webkit-keyframes selBlink {
|
|
2800
3186
|
0% {
|
|
2801
3187
|
color: white;
|
|
@@ -2818,6 +3204,7 @@ div.racktile {
|
|
|
2818
3204
|
background-color: var(--cancel-button);
|
|
2819
3205
|
}
|
|
2820
3206
|
}
|
|
3207
|
+
|
|
2821
3208
|
@keyframes selBlank {
|
|
2822
3209
|
0% {
|
|
2823
3210
|
color: white;
|
|
@@ -2840,6 +3227,7 @@ div.racktile {
|
|
|
2840
3227
|
background-color: var(--cancel-button);
|
|
2841
3228
|
}
|
|
2842
3229
|
}
|
|
3230
|
+
|
|
2843
3231
|
@-webkit-keyframes selBlank {
|
|
2844
3232
|
0% {
|
|
2845
3233
|
color: white;
|
|
@@ -2862,6 +3250,7 @@ div.racktile {
|
|
|
2862
3250
|
background-color: var(--cancel-button);
|
|
2863
3251
|
}
|
|
2864
3252
|
}
|
|
3253
|
+
|
|
2865
3254
|
@keyframes redBlink {
|
|
2866
3255
|
0% {
|
|
2867
3256
|
opacity: 1;
|
|
@@ -2879,6 +3268,7 @@ div.racktile {
|
|
|
2879
3268
|
opacity: 1;
|
|
2880
3269
|
}
|
|
2881
3270
|
}
|
|
3271
|
+
|
|
2882
3272
|
@-webkit-keyframes redBlink {
|
|
2883
3273
|
0% {
|
|
2884
3274
|
opacity: 1;
|
|
@@ -2896,6 +3286,7 @@ div.racktile {
|
|
|
2896
3286
|
opacity: 1;
|
|
2897
3287
|
}
|
|
2898
3288
|
}
|
|
3289
|
+
|
|
2899
3290
|
@keyframes opacityBlink {
|
|
2900
3291
|
0% {
|
|
2901
3292
|
opacity: 1;
|
|
@@ -2913,6 +3304,7 @@ div.racktile {
|
|
|
2913
3304
|
opacity: 0.1;
|
|
2914
3305
|
}
|
|
2915
3306
|
}
|
|
3307
|
+
|
|
2916
3308
|
@-webkit-keyframes opacityBlink {
|
|
2917
3309
|
0% {
|
|
2918
3310
|
opacity: 1;
|
|
@@ -2930,27 +3322,34 @@ div.racktile {
|
|
|
2930
3322
|
opacity: 0.1;
|
|
2931
3323
|
}
|
|
2932
3324
|
}
|
|
3325
|
+
|
|
2933
3326
|
div.sel {
|
|
2934
3327
|
animation: selBlink 1.2s infinite;
|
|
2935
3328
|
-webkit-animation: selBlink 1.2s infinite;
|
|
2936
3329
|
}
|
|
3330
|
+
|
|
2937
3331
|
div.blanktile.sel {
|
|
2938
3332
|
animation: selBlank 1.2s infinite;
|
|
2939
3333
|
-webkit-animation: selBlank 1.2s infinite;
|
|
2940
3334
|
}
|
|
3335
|
+
|
|
2941
3336
|
td.sel {
|
|
2942
3337
|
outline: var(--cancel-button) solid 3px;
|
|
2943
3338
|
}
|
|
3339
|
+
|
|
2944
3340
|
div.xchg {
|
|
2945
3341
|
cursor: pointer;
|
|
2946
3342
|
}
|
|
3343
|
+
|
|
2947
3344
|
div.xchgsel {
|
|
2948
3345
|
color: white;
|
|
2949
3346
|
background-color: var(--ok-button);
|
|
2950
3347
|
}
|
|
3348
|
+
|
|
2951
3349
|
.blanktile {
|
|
2952
3350
|
color: var(--blank-tile);
|
|
2953
3351
|
}
|
|
3352
|
+
|
|
2954
3353
|
@keyframes fresh-appear {
|
|
2955
3354
|
0% {
|
|
2956
3355
|
opacity: 0;
|
|
@@ -2959,6 +3358,7 @@ div.xchgsel {
|
|
|
2959
3358
|
opacity: 1;
|
|
2960
3359
|
}
|
|
2961
3360
|
}
|
|
3361
|
+
|
|
2962
3362
|
@-webkit-keyframes fresh-appear {
|
|
2963
3363
|
0% {
|
|
2964
3364
|
opacity: 0;
|
|
@@ -2967,6 +3367,7 @@ div.xchgsel {
|
|
|
2967
3367
|
opacity: 1;
|
|
2968
3368
|
}
|
|
2969
3369
|
}
|
|
3370
|
+
|
|
2970
3371
|
div.freshtile {
|
|
2971
3372
|
color: white;
|
|
2972
3373
|
background-color: var(--cancel-button);
|
|
@@ -2980,30 +3381,37 @@ div.freshtile {
|
|
|
2980
3381
|
-webkit-animation-delay: 0s;
|
|
2981
3382
|
-webkit-animation-fill-mode: forwards;
|
|
2982
3383
|
}
|
|
3384
|
+
|
|
2983
3385
|
div.highlight0 {
|
|
2984
3386
|
/* Human (local) player */
|
|
2985
3387
|
color: black;
|
|
2986
3388
|
background-color: white;
|
|
2987
3389
|
}
|
|
3390
|
+
|
|
2988
3391
|
div.highlight1 {
|
|
2989
3392
|
/* Computer (remote) player */
|
|
2990
3393
|
color: white;
|
|
2991
3394
|
background-color: var(--cancel-button);
|
|
2992
3395
|
}
|
|
3396
|
+
|
|
2993
3397
|
div.highlight0.blanktile {
|
|
2994
3398
|
/* Human (local) player */
|
|
2995
3399
|
color: var(--blank-tile);
|
|
2996
3400
|
}
|
|
3401
|
+
|
|
2997
3402
|
div.highlight1.blanktile {
|
|
2998
3403
|
/* Computer (remote) player */
|
|
2999
3404
|
color: #f3d6d8;
|
|
3000
3405
|
}
|
|
3406
|
+
|
|
3001
3407
|
div.highlight0.dim {
|
|
3002
3408
|
background-color: #fbedee;
|
|
3003
3409
|
}
|
|
3410
|
+
|
|
3004
3411
|
div.highlight1.dim {
|
|
3005
3412
|
background-color: #deb3b6;
|
|
3006
3413
|
}
|
|
3414
|
+
|
|
3007
3415
|
.clock {
|
|
3008
3416
|
display: inline-block;
|
|
3009
3417
|
position: absolute;
|
|
@@ -3012,57 +3420,63 @@ div.highlight1.dim {
|
|
|
3012
3420
|
font-size: 28px;
|
|
3013
3421
|
line-height: 28px;
|
|
3014
3422
|
font-weight: 700;
|
|
3015
|
-
color:
|
|
3423
|
+
color: var(--dark-bg-color);
|
|
3016
3424
|
overflow: hidden;
|
|
3017
3425
|
margin-top: 4px;
|
|
3018
3426
|
margin-bottom: 4px;
|
|
3019
3427
|
}
|
|
3428
|
+
|
|
3020
3429
|
h3.clockleft {
|
|
3021
3430
|
display: inline-block;
|
|
3022
3431
|
position: absolute;
|
|
3023
|
-
top:
|
|
3432
|
+
top: 86px;
|
|
3024
3433
|
width: 147px;
|
|
3025
3434
|
font-size: 28px;
|
|
3026
3435
|
line-height: 28px;
|
|
3027
3436
|
font-weight: 700;
|
|
3028
|
-
color:
|
|
3437
|
+
color: var(--dark-bg-color);
|
|
3029
3438
|
overflow: hidden;
|
|
3030
3439
|
margin-top: 4px;
|
|
3031
3440
|
margin-bottom: 4px;
|
|
3032
3441
|
left: 0;
|
|
3033
3442
|
text-align: left;
|
|
3034
3443
|
}
|
|
3444
|
+
|
|
3035
3445
|
h3.clockright {
|
|
3036
3446
|
display: inline-block;
|
|
3037
3447
|
position: absolute;
|
|
3038
|
-
top:
|
|
3448
|
+
top: 86px;
|
|
3039
3449
|
width: 147px;
|
|
3040
3450
|
font-size: 28px;
|
|
3041
3451
|
line-height: 28px;
|
|
3042
3452
|
font-weight: 700;
|
|
3043
|
-
color:
|
|
3453
|
+
color: var(--dark-bg-color);
|
|
3044
3454
|
overflow: hidden;
|
|
3045
3455
|
margin-top: 4px;
|
|
3046
3456
|
margin-bottom: 4px;
|
|
3047
3457
|
right: 0;
|
|
3048
3458
|
text-align: right;
|
|
3049
3459
|
}
|
|
3460
|
+
|
|
3050
3461
|
h3.clockleft.running-out {
|
|
3051
3462
|
color: var(--cancel-button);
|
|
3052
3463
|
}
|
|
3464
|
+
|
|
3053
3465
|
h3.clockright.running-out {
|
|
3054
3466
|
color: var(--cancel-button);
|
|
3055
3467
|
}
|
|
3468
|
+
|
|
3056
3469
|
div.clockface {
|
|
3057
3470
|
display: block;
|
|
3058
3471
|
position: absolute;
|
|
3059
|
-
top:
|
|
3472
|
+
top: 86px;
|
|
3060
3473
|
width: 100%;
|
|
3061
3474
|
text-align: center;
|
|
3062
3475
|
font-size: 28px;
|
|
3063
3476
|
line-height: 28px;
|
|
3064
3477
|
color: var(--triple-word-color);
|
|
3065
3478
|
}
|
|
3479
|
+
|
|
3066
3480
|
div.fairplay {
|
|
3067
3481
|
position: absolute;
|
|
3068
3482
|
top: 10px;
|
|
@@ -3070,6 +3484,7 @@ div.fairplay {
|
|
|
3070
3484
|
text-align: center;
|
|
3071
3485
|
color: var(--ok-button);
|
|
3072
3486
|
}
|
|
3487
|
+
|
|
3073
3488
|
div.games-item {
|
|
3074
3489
|
position: relative;
|
|
3075
3490
|
height: 24px;
|
|
@@ -3086,18 +3501,22 @@ div.games-item {
|
|
|
3086
3501
|
text-overflow: ellipsis;
|
|
3087
3502
|
white-space: nowrap;
|
|
3088
3503
|
}
|
|
3504
|
+
|
|
3089
3505
|
div.games-item a:link,
|
|
3090
3506
|
div.games-item a:visited {
|
|
3091
3507
|
color: black;
|
|
3092
3508
|
text-decoration: none;
|
|
3093
3509
|
}
|
|
3510
|
+
|
|
3094
3511
|
div.games-item a:hover {
|
|
3095
3512
|
color: black;
|
|
3096
3513
|
}
|
|
3514
|
+
|
|
3097
3515
|
div.games-item:hover {
|
|
3098
3516
|
border-radius: 5px;
|
|
3099
3517
|
background-color: rgba(86, 153, 165, 0.5);
|
|
3100
3518
|
}
|
|
3519
|
+
|
|
3101
3520
|
div.at-top-left {
|
|
3102
3521
|
position: absolute;
|
|
3103
3522
|
top: 6px;
|
|
@@ -3107,6 +3526,7 @@ div.at-top-left {
|
|
|
3107
3526
|
line-height: 20px;
|
|
3108
3527
|
font-weight: bold;
|
|
3109
3528
|
}
|
|
3529
|
+
|
|
3110
3530
|
div.at-top-left div.tilecount {
|
|
3111
3531
|
width: 276px;
|
|
3112
3532
|
min-width: 276px;
|
|
@@ -3114,11 +3534,13 @@ div.at-top-left div.tilecount {
|
|
|
3114
3534
|
border-radius: 10px;
|
|
3115
3535
|
border-width: 0;
|
|
3116
3536
|
overflow: hidden;
|
|
3117
|
-
background-color:
|
|
3537
|
+
background-color: var(--header-background);
|
|
3118
3538
|
}
|
|
3539
|
+
|
|
3119
3540
|
div.at-top-left div.tilecount.trans {
|
|
3120
3541
|
background-color: transparent;
|
|
3121
3542
|
}
|
|
3543
|
+
|
|
3122
3544
|
div.at-top-left div.tilecount div.tc {
|
|
3123
3545
|
color: var(--container-bg-color);
|
|
3124
3546
|
padding-left: 4px;
|
|
@@ -3132,8 +3554,9 @@ div.at-top-left div.tilecount div.tc {
|
|
|
3132
3554
|
padding-top: 2px;
|
|
3133
3555
|
padding-bottom: 2px;
|
|
3134
3556
|
}
|
|
3557
|
+
|
|
3135
3558
|
div.at-top-left div.tilecount div.oc {
|
|
3136
|
-
color:
|
|
3559
|
+
color: var(--dark-bg-color);
|
|
3137
3560
|
padding-left: 8px;
|
|
3138
3561
|
margin-left: 0;
|
|
3139
3562
|
overflow: hidden;
|
|
@@ -3144,19 +3567,22 @@ div.at-top-left div.tilecount div.oc {
|
|
|
3144
3567
|
padding-bottom: 2px;
|
|
3145
3568
|
background-color: transparent;
|
|
3146
3569
|
}
|
|
3147
|
-
|
|
3570
|
+
|
|
3571
|
+
div.chat-container {
|
|
3148
3572
|
position: absolute;
|
|
3149
3573
|
top: 0px;
|
|
3150
3574
|
left: 0px;
|
|
3151
3575
|
width: 100%;
|
|
3152
3576
|
height: 466px;
|
|
3153
|
-
background-color:
|
|
3577
|
+
background-color: var(--chat-background);
|
|
3154
3578
|
z-index: 1;
|
|
3155
3579
|
border-radius: 4px 4px 0 0;
|
|
3156
3580
|
}
|
|
3581
|
+
|
|
3157
3582
|
div.chat-area.with-clock {
|
|
3158
3583
|
height: 310px;
|
|
3159
3584
|
}
|
|
3585
|
+
|
|
3160
3586
|
div.chat-ts {
|
|
3161
3587
|
clear: both;
|
|
3162
3588
|
display: inline-block;
|
|
@@ -3168,6 +3594,7 @@ div.chat-ts {
|
|
|
3168
3594
|
margin-bottom: 8px;
|
|
3169
3595
|
width: 100%;
|
|
3170
3596
|
}
|
|
3597
|
+
|
|
3171
3598
|
div.chat-msg {
|
|
3172
3599
|
display: inline-block;
|
|
3173
3600
|
border-radius: 8px;
|
|
@@ -3181,26 +3608,35 @@ div.chat-msg {
|
|
|
3181
3608
|
max-width: 80%;
|
|
3182
3609
|
margin-bottom: 6px;
|
|
3183
3610
|
}
|
|
3611
|
+
|
|
3184
3612
|
div.chat-msg.left {
|
|
3185
3613
|
float: left;
|
|
3186
3614
|
clear: both;
|
|
3187
3615
|
text-align: left;
|
|
3188
3616
|
}
|
|
3617
|
+
|
|
3189
3618
|
div.chat-msg.right {
|
|
3190
3619
|
float: right;
|
|
3191
3620
|
clear: both;
|
|
3192
3621
|
text-align: right;
|
|
3193
3622
|
}
|
|
3623
|
+
|
|
3194
3624
|
div.chat-msg.local {
|
|
3195
3625
|
background-color: var(--board-background);
|
|
3196
3626
|
}
|
|
3627
|
+
|
|
3197
3628
|
div.chat-msg.remote {
|
|
3198
3629
|
background-color: #F1DBDA;
|
|
3199
3630
|
}
|
|
3631
|
+
|
|
3200
3632
|
div.chat-msg img {
|
|
3201
|
-
vertical-align: -10px;
|
|
3202
3633
|
/* Emoticon alignment to baseline */
|
|
3634
|
+
vertical-align: -10px;
|
|
3635
|
+
display: inline;
|
|
3636
|
+
margin-left: 2px;
|
|
3637
|
+
margin-right: 2px;
|
|
3203
3638
|
}
|
|
3639
|
+
|
|
3204
3640
|
div.chat-input {
|
|
3205
3641
|
position: absolute;
|
|
3206
3642
|
bottom: 0px;
|
|
@@ -3209,31 +3645,36 @@ div.chat-input {
|
|
|
3209
3645
|
padding: 6px;
|
|
3210
3646
|
vertical-align: bottom;
|
|
3211
3647
|
}
|
|
3648
|
+
|
|
3212
3649
|
div.movelist.noscroll {
|
|
3213
3650
|
overflow-y: hidden;
|
|
3214
3651
|
}
|
|
3652
|
+
|
|
3215
3653
|
div.leftmove {
|
|
3216
3654
|
text-align: left;
|
|
3217
3655
|
padding-left: 0px;
|
|
3218
3656
|
height: 20px;
|
|
3219
3657
|
line-height: 18px;
|
|
3220
3658
|
}
|
|
3659
|
+
|
|
3221
3660
|
div.rightmove {
|
|
3222
3661
|
text-align: right;
|
|
3223
3662
|
padding-right: 0px;
|
|
3224
3663
|
height: 20px;
|
|
3225
3664
|
line-height: 18px;
|
|
3226
3665
|
}
|
|
3666
|
+
|
|
3227
3667
|
div.reviewhdr {
|
|
3228
3668
|
height: 18px;
|
|
3229
3669
|
text-align: left;
|
|
3230
3670
|
padding: 11px;
|
|
3231
|
-
background-color: var(--
|
|
3671
|
+
background-color: var(--human-color);
|
|
3232
3672
|
color: white;
|
|
3233
3673
|
font-weight: 400;
|
|
3234
3674
|
font-size: 18px;
|
|
3235
3675
|
line-height: 18px;
|
|
3236
3676
|
}
|
|
3677
|
+
|
|
3237
3678
|
span.movenumber {
|
|
3238
3679
|
background-color: white;
|
|
3239
3680
|
color: var(--ok-button);
|
|
@@ -3249,17 +3690,20 @@ span.movenumber {
|
|
|
3249
3690
|
padding-left: 12px;
|
|
3250
3691
|
padding-right: 12px;
|
|
3251
3692
|
}
|
|
3693
|
+
|
|
3252
3694
|
div.gameover {
|
|
3253
3695
|
text-align: center;
|
|
3254
3696
|
margin-top: 6px;
|
|
3255
3697
|
padding: 10px;
|
|
3256
3698
|
background-color: var(--triple-word-color);
|
|
3257
3699
|
color: white;
|
|
3258
|
-
font-weight:
|
|
3700
|
+
font-weight: 400;
|
|
3259
3701
|
}
|
|
3702
|
+
|
|
3260
3703
|
span.gameovermsg {
|
|
3261
3704
|
margin-right: 6px;
|
|
3262
3705
|
}
|
|
3706
|
+
|
|
3263
3707
|
div.gamestats {
|
|
3264
3708
|
visibility: hidden;
|
|
3265
3709
|
color: black;
|
|
@@ -3269,58 +3713,70 @@ div.gamestats {
|
|
|
3269
3713
|
width: 724px;
|
|
3270
3714
|
height: 580px;
|
|
3271
3715
|
left: 150px;
|
|
3272
|
-
top:
|
|
3716
|
+
top: 24px;
|
|
3273
3717
|
padding: 12px;
|
|
3274
3718
|
border-radius: 5px;
|
|
3275
3719
|
box-shadow: 3px 3px 5px 2px var(--dark-shadow);
|
|
3276
3720
|
}
|
|
3721
|
+
|
|
3277
3722
|
div.statscol {
|
|
3278
3723
|
display: block;
|
|
3279
3724
|
float: left;
|
|
3280
3725
|
width: 50%;
|
|
3281
|
-
padding-top: 24px;
|
|
3282
3726
|
}
|
|
3727
|
+
|
|
3283
3728
|
div.statscol p {
|
|
3284
|
-
margin-top: 0
|
|
3285
|
-
margin-bottom:
|
|
3729
|
+
margin-top: 0;
|
|
3730
|
+
margin-bottom: 12px;
|
|
3286
3731
|
}
|
|
3732
|
+
|
|
3287
3733
|
div.gamestats p span {
|
|
3288
3734
|
font-weight: 700;
|
|
3289
3735
|
}
|
|
3290
|
-
|
|
3736
|
+
|
|
3737
|
+
div#gamestarted {
|
|
3291
3738
|
width: 100%;
|
|
3292
3739
|
text-align: center;
|
|
3293
3740
|
position: relative;
|
|
3294
|
-
top:
|
|
3295
|
-
margin-bottom:
|
|
3741
|
+
margin-top: 16px;
|
|
3742
|
+
margin-bottom: 16px;
|
|
3296
3743
|
}
|
|
3744
|
+
|
|
3297
3745
|
#gamestarted p {
|
|
3298
3746
|
font-style: italic;
|
|
3299
3747
|
margin-top: 4px;
|
|
3300
3748
|
margin-bottom: 8px;
|
|
3301
3749
|
}
|
|
3750
|
+
|
|
3302
3751
|
.humancolor {
|
|
3303
3752
|
background-color: var(--human-color);
|
|
3304
3753
|
}
|
|
3754
|
+
|
|
3305
3755
|
.autoplayercolor {
|
|
3306
3756
|
background-color: var(--cancel-button);
|
|
3307
3757
|
}
|
|
3758
|
+
|
|
3308
3759
|
/* Scores in move list */
|
|
3760
|
+
|
|
3309
3761
|
.humangrad_left {
|
|
3310
|
-
color:
|
|
3762
|
+
color: var(--human-color);
|
|
3311
3763
|
}
|
|
3764
|
+
|
|
3312
3765
|
.autoplayergrad_right {
|
|
3313
3766
|
color: var(--cancel-button);
|
|
3314
3767
|
}
|
|
3768
|
+
|
|
3315
3769
|
.humangrad_right {
|
|
3316
|
-
color:
|
|
3770
|
+
color: var(--human-color);
|
|
3317
3771
|
}
|
|
3772
|
+
|
|
3318
3773
|
.autoplayergrad_left {
|
|
3319
3774
|
color: var(--cancel-button);
|
|
3320
3775
|
}
|
|
3776
|
+
|
|
3321
3777
|
span.score {
|
|
3322
3778
|
display: inline-block;
|
|
3323
|
-
width:
|
|
3779
|
+
width: 32px;
|
|
3324
3780
|
padding-left: 2px;
|
|
3325
3781
|
margin-left: 2px;
|
|
3326
3782
|
padding-right: 2px;
|
|
@@ -3329,6 +3785,7 @@ span.score {
|
|
|
3329
3785
|
text-align: right;
|
|
3330
3786
|
line-height: 20px;
|
|
3331
3787
|
}
|
|
3788
|
+
|
|
3332
3789
|
span.total {
|
|
3333
3790
|
display: inline-block;
|
|
3334
3791
|
width: 28px;
|
|
@@ -3341,6 +3798,7 @@ span.total {
|
|
|
3341
3798
|
color: white;
|
|
3342
3799
|
line-height: 20px;
|
|
3343
3800
|
}
|
|
3801
|
+
|
|
3344
3802
|
div.leftmove span.total {
|
|
3345
3803
|
border-left-width: 0px;
|
|
3346
3804
|
border-left-style: solid;
|
|
@@ -3348,6 +3806,7 @@ div.leftmove span.total {
|
|
|
3348
3806
|
border-bottom-right-radius: 2.5px;
|
|
3349
3807
|
margin-right: 2px;
|
|
3350
3808
|
}
|
|
3809
|
+
|
|
3351
3810
|
div.rightmove span.total {
|
|
3352
3811
|
border-right-width: 0px;
|
|
3353
3812
|
border-right-style: solid;
|
|
@@ -3355,45 +3814,56 @@ div.rightmove span.total {
|
|
|
3355
3814
|
border-bottom-left-radius: 2.5px;
|
|
3356
3815
|
margin-left: 2px;
|
|
3357
3816
|
}
|
|
3817
|
+
|
|
3358
3818
|
span.total.human {
|
|
3359
|
-
background-color:
|
|
3819
|
+
background-color: var(--human-color);
|
|
3360
3820
|
}
|
|
3821
|
+
|
|
3361
3822
|
div.leftmove span.total.human {
|
|
3362
|
-
border-left-color:
|
|
3823
|
+
border-left-color: var(--svarkur-secondary);
|
|
3363
3824
|
}
|
|
3825
|
+
|
|
3364
3826
|
div.rightmove span.total.human {
|
|
3365
|
-
border-right-color:
|
|
3827
|
+
border-right-color: var(--svarkur-secondary);
|
|
3366
3828
|
}
|
|
3829
|
+
|
|
3367
3830
|
span.total.autoplayer {
|
|
3368
|
-
background-color:
|
|
3831
|
+
background-color: var(--cancel-button);
|
|
3369
3832
|
}
|
|
3833
|
+
|
|
3370
3834
|
div.leftmove span.total.autoplayer {
|
|
3371
3835
|
border-left-color: var(--cancel-button);
|
|
3372
3836
|
}
|
|
3837
|
+
|
|
3373
3838
|
div.rightmove span.total.autoplayer {
|
|
3374
3839
|
border-right-color: var(--cancel-button);
|
|
3375
3840
|
}
|
|
3841
|
+
|
|
3376
3842
|
span.highlight {
|
|
3377
3843
|
background-color: var(--ok-button);
|
|
3378
3844
|
color: white;
|
|
3379
3845
|
}
|
|
3846
|
+
|
|
3380
3847
|
span.wordmove {
|
|
3381
3848
|
text-transform: uppercase;
|
|
3382
3849
|
padding-left: 3px;
|
|
3383
3850
|
padding-right: 3px;
|
|
3384
3851
|
font-size: 12px;
|
|
3385
3852
|
}
|
|
3853
|
+
|
|
3386
3854
|
span.wordmove i {
|
|
3387
3855
|
font-weight: bold;
|
|
3388
3856
|
padding-left: 3px;
|
|
3389
3857
|
padding-right: 3px;
|
|
3390
3858
|
font-size: 16px;
|
|
3391
3859
|
}
|
|
3860
|
+
|
|
3392
3861
|
span.othermove {
|
|
3393
3862
|
text-transform: none;
|
|
3394
3863
|
padding-left: 3px;
|
|
3395
3864
|
font-size: 14px;
|
|
3396
3865
|
}
|
|
3866
|
+
|
|
3397
3867
|
div.error p {
|
|
3398
3868
|
display: inline;
|
|
3399
3869
|
position: relative;
|
|
@@ -3402,15 +3872,18 @@ div.error p {
|
|
|
3402
3872
|
margin: 0;
|
|
3403
3873
|
padding: 0;
|
|
3404
3874
|
}
|
|
3875
|
+
|
|
3405
3876
|
div.error span.glyphicon {
|
|
3406
3877
|
padding-right: 6px;
|
|
3407
3878
|
}
|
|
3879
|
+
|
|
3408
3880
|
span.pass-explain {
|
|
3409
3881
|
font-weight: normal;
|
|
3410
3882
|
font-style: italic;
|
|
3411
3883
|
padding-left: 3px;
|
|
3412
3884
|
padding-right: 3px;
|
|
3413
3885
|
}
|
|
3886
|
+
|
|
3414
3887
|
span.yesnobutton {
|
|
3415
3888
|
height: 20px;
|
|
3416
3889
|
text-align: center;
|
|
@@ -3428,33 +3901,42 @@ span.yesnobutton {
|
|
|
3428
3901
|
border-radius: 5px;
|
|
3429
3902
|
cursor: pointer;
|
|
3430
3903
|
}
|
|
3904
|
+
|
|
3431
3905
|
div.resign span.yesnobutton {
|
|
3432
3906
|
color: var(--cancel-button);
|
|
3433
3907
|
}
|
|
3908
|
+
|
|
3434
3909
|
div.pass span.yesnobutton,
|
|
3435
3910
|
div.pass-last span.yesnobutton {
|
|
3436
3911
|
color: var(--triple-word-color);
|
|
3437
3912
|
}
|
|
3913
|
+
|
|
3438
3914
|
div.exchange span.yesnobutton {
|
|
3439
3915
|
color: var(--ok-button);
|
|
3440
3916
|
}
|
|
3917
|
+
|
|
3441
3918
|
div.chall span.yesnobutton {
|
|
3442
3919
|
color: var(--triple-letter-color);
|
|
3443
3920
|
}
|
|
3921
|
+
|
|
3444
3922
|
span.closebtn {
|
|
3445
3923
|
color: var(--triple-word-color);
|
|
3446
3924
|
}
|
|
3925
|
+
|
|
3447
3926
|
span.yesnobutton#force-resign {
|
|
3448
3927
|
display: none;
|
|
3449
3928
|
}
|
|
3929
|
+
|
|
3450
3930
|
div.score.word-good {
|
|
3451
3931
|
color: var(--ok-button);
|
|
3452
3932
|
border-color: var(--ok-button);
|
|
3453
3933
|
}
|
|
3934
|
+
|
|
3454
3935
|
div.score.manual {
|
|
3455
3936
|
color: var(--triple-letter-color);
|
|
3456
3937
|
border-color: var(--triple-letter-color);
|
|
3457
3938
|
}
|
|
3939
|
+
|
|
3458
3940
|
@keyframes colorPulse {
|
|
3459
3941
|
0% {
|
|
3460
3942
|
color: var(--ok-button);
|
|
@@ -3471,6 +3953,7 @@ div.score.manual {
|
|
|
3471
3953
|
color: var(--ok-button);
|
|
3472
3954
|
}
|
|
3473
3955
|
}
|
|
3956
|
+
|
|
3474
3957
|
@-webkit-keyframes colorPulse {
|
|
3475
3958
|
0% {
|
|
3476
3959
|
color: var(--ok-button);
|
|
@@ -3487,21 +3970,25 @@ div.score.manual {
|
|
|
3487
3970
|
color: var(--ok-button);
|
|
3488
3971
|
}
|
|
3489
3972
|
}
|
|
3973
|
+
|
|
3490
3974
|
div.score.word-great {
|
|
3491
3975
|
animation: colorPulse 1.5s infinite;
|
|
3492
3976
|
-webkit-animation: colorPulse 1.5s infinite;
|
|
3493
3977
|
border-color: var(--ok-button);
|
|
3494
3978
|
}
|
|
3979
|
+
|
|
3495
3980
|
div.score.opponent {
|
|
3496
3981
|
color: white;
|
|
3497
3982
|
background-color: var(--cancel-button);
|
|
3498
3983
|
border: none;
|
|
3499
3984
|
}
|
|
3985
|
+
|
|
3500
3986
|
div.score.localplayer {
|
|
3501
3987
|
color: white;
|
|
3502
3988
|
background-color: var(--human-color);
|
|
3503
3989
|
border: none;
|
|
3504
3990
|
}
|
|
3991
|
+
|
|
3505
3992
|
div.channel {
|
|
3506
3993
|
position: absolute;
|
|
3507
3994
|
width: 32px;
|
|
@@ -3517,28 +4004,34 @@ div.channel {
|
|
|
3517
4004
|
overflow: hidden;
|
|
3518
4005
|
visibility: hidden;
|
|
3519
4006
|
}
|
|
4007
|
+
|
|
3520
4008
|
div.channel:before {
|
|
3521
4009
|
content: "\E051";
|
|
3522
4010
|
/* glyphicon-link */
|
|
3523
4011
|
}
|
|
4012
|
+
|
|
3524
4013
|
div.word-check.word-good {
|
|
3525
4014
|
color: var(--ok-button);
|
|
3526
4015
|
border-color: var(--ok-button);
|
|
3527
4016
|
visibility: visible;
|
|
3528
4017
|
}
|
|
4018
|
+
|
|
3529
4019
|
div.word-check.word-good:before {
|
|
3530
4020
|
content: "\E344";
|
|
3531
4021
|
/* glyphicon-thumbs-up */
|
|
3532
4022
|
}
|
|
4023
|
+
|
|
3533
4024
|
div.word-check.word-bad {
|
|
3534
4025
|
color: var(--cancel-button);
|
|
3535
4026
|
border-color: var(--cancel-button);
|
|
3536
4027
|
visibility: visible;
|
|
3537
4028
|
}
|
|
4029
|
+
|
|
3538
4030
|
div.word-check.word-bad:before {
|
|
3539
4031
|
content: "\E200";
|
|
3540
4032
|
/* glyphicon-ban-circle */
|
|
3541
4033
|
}
|
|
4034
|
+
|
|
3542
4035
|
div.board-help {
|
|
3543
4036
|
position: absolute;
|
|
3544
4037
|
z-index: 2;
|
|
@@ -3550,12 +4043,14 @@ div.board-help {
|
|
|
3550
4043
|
border-radius: 5px;
|
|
3551
4044
|
cursor: default;
|
|
3552
4045
|
}
|
|
4046
|
+
|
|
3553
4047
|
div.board-help-close {
|
|
3554
4048
|
width: 50px;
|
|
3555
4049
|
text-align: right;
|
|
3556
4050
|
background-color: white;
|
|
3557
4051
|
margin: 2px;
|
|
3558
4052
|
}
|
|
4053
|
+
|
|
3559
4054
|
div.board-help-close span {
|
|
3560
4055
|
background-color: var(--cancel-button);
|
|
3561
4056
|
color: white;
|
|
@@ -3564,13 +4059,16 @@ div.board-help-close span {
|
|
|
3564
4059
|
padding-left: 2px;
|
|
3565
4060
|
cursor: pointer;
|
|
3566
4061
|
}
|
|
4062
|
+
|
|
3567
4063
|
div.board-help-close span:hover {
|
|
3568
|
-
background-color: var(--
|
|
4064
|
+
background-color: var(--pass-button);
|
|
3569
4065
|
}
|
|
4066
|
+
|
|
3570
4067
|
div.board-colors {
|
|
3571
4068
|
margin: 0;
|
|
3572
4069
|
padding: 0;
|
|
3573
4070
|
}
|
|
4071
|
+
|
|
3574
4072
|
div.board-color {
|
|
3575
4073
|
width: 44px;
|
|
3576
4074
|
text-align: center;
|
|
@@ -3584,28 +4082,34 @@ div.board-color {
|
|
|
3584
4082
|
border: solid 2px white;
|
|
3585
4083
|
border-collapse: collapse;
|
|
3586
4084
|
}
|
|
4085
|
+
|
|
3587
4086
|
div.board-color#triple-word {
|
|
3588
4087
|
background-color: var(--triple-word-color);
|
|
3589
4088
|
color: white;
|
|
3590
4089
|
border-bottom: none;
|
|
3591
4090
|
}
|
|
4091
|
+
|
|
3592
4092
|
div.board-color#double-word {
|
|
3593
4093
|
background-color: var(--double-word-color);
|
|
3594
4094
|
border-bottom: none;
|
|
3595
4095
|
}
|
|
4096
|
+
|
|
3596
4097
|
div.board-color#triple-letter {
|
|
3597
4098
|
background-color: var(--triple-letter-color);
|
|
3598
4099
|
color: white;
|
|
3599
4100
|
border-bottom: none;
|
|
3600
4101
|
}
|
|
4102
|
+
|
|
3601
4103
|
div.board-color#double-letter {
|
|
3602
4104
|
background-color: var(--double-letter-color);
|
|
3603
4105
|
border-bottom: none;
|
|
3604
4106
|
}
|
|
4107
|
+
|
|
3605
4108
|
div.board-color#single-letter {
|
|
3606
4109
|
background-color: var(--board-background);
|
|
3607
4110
|
color: black;
|
|
3608
4111
|
}
|
|
4112
|
+
|
|
3609
4113
|
div.scorediff {
|
|
3610
4114
|
position: absolute;
|
|
3611
4115
|
width: 50px;
|
|
@@ -3613,19 +4117,22 @@ div.scorediff {
|
|
|
3613
4117
|
text-align: center;
|
|
3614
4118
|
vertical-align: middle;
|
|
3615
4119
|
bottom: 272px;
|
|
3616
|
-
left:
|
|
4120
|
+
left: 646px;
|
|
3617
4121
|
background-color: var(--cancel-button);
|
|
3618
4122
|
font-size: 18px;
|
|
3619
4123
|
font-weight: normal;
|
|
3620
4124
|
color: white;
|
|
3621
4125
|
visibility: hidden;
|
|
3622
|
-
padding-top:
|
|
4126
|
+
padding-top: 2px;
|
|
3623
4127
|
padding-bottom: 2px;
|
|
3624
|
-
font-family:
|
|
4128
|
+
font-family: var(--number-font);
|
|
4129
|
+
border-radius: 5px;
|
|
3625
4130
|
}
|
|
4131
|
+
|
|
3626
4132
|
div.posdiff {
|
|
3627
|
-
background-color: var(--
|
|
4133
|
+
background-color: var(--human-color);
|
|
3628
4134
|
}
|
|
4135
|
+
|
|
3629
4136
|
div.navbtn {
|
|
3630
4137
|
text-align: center;
|
|
3631
4138
|
font-size: 18px;
|
|
@@ -3641,30 +4148,37 @@ div.navbtn {
|
|
|
3641
4148
|
height: 30px;
|
|
3642
4149
|
bottom: 136px;
|
|
3643
4150
|
line-height: 24px;
|
|
3644
|
-
background-color: var(--
|
|
4151
|
+
background-color: var(--header-color);
|
|
3645
4152
|
}
|
|
4153
|
+
|
|
3646
4154
|
div.navbtn#navnext {
|
|
3647
4155
|
position: absolute;
|
|
3648
4156
|
left: 550px;
|
|
3649
4157
|
font-weight: normal;
|
|
3650
4158
|
}
|
|
4159
|
+
|
|
3651
4160
|
div.navbtn#navprev {
|
|
3652
4161
|
position: absolute;
|
|
3653
4162
|
left: 110px;
|
|
3654
4163
|
font-weight: normal;
|
|
3655
4164
|
}
|
|
4165
|
+
|
|
3656
4166
|
span#nav-prev-visible {
|
|
3657
4167
|
display: inline;
|
|
3658
4168
|
}
|
|
4169
|
+
|
|
3659
4170
|
span#nav-prev-waiting {
|
|
3660
4171
|
display: none;
|
|
3661
4172
|
}
|
|
4173
|
+
|
|
3662
4174
|
span#nav-next-visible {
|
|
3663
4175
|
display: inline;
|
|
3664
4176
|
}
|
|
4177
|
+
|
|
3665
4178
|
span#nav-next-waiting {
|
|
3666
4179
|
display: none;
|
|
3667
4180
|
}
|
|
4181
|
+
|
|
3668
4182
|
div.closebtn {
|
|
3669
4183
|
text-align: center;
|
|
3670
4184
|
font-size: 18px;
|
|
@@ -3680,29 +4194,35 @@ div.closebtn {
|
|
|
3680
4194
|
bottom: 12px;
|
|
3681
4195
|
background-color: var(--ok-button);
|
|
3682
4196
|
}
|
|
4197
|
+
|
|
3683
4198
|
#review-close {
|
|
3684
4199
|
position: absolute;
|
|
3685
4200
|
right: 12px;
|
|
3686
4201
|
}
|
|
4202
|
+
|
|
3687
4203
|
span#total0,
|
|
3688
4204
|
span#total1 {
|
|
3689
4205
|
font-size: 28px;
|
|
3690
4206
|
margin-left: 8px;
|
|
3691
4207
|
margin-right: 8px;
|
|
3692
4208
|
}
|
|
4209
|
+
|
|
3693
4210
|
div.promo-content h2 {
|
|
3694
4211
|
color: var(--ok-button);
|
|
3695
4212
|
font-size: 24px;
|
|
3696
4213
|
line-height: 30px;
|
|
3697
4214
|
font-weight: bold;
|
|
3698
4215
|
}
|
|
4216
|
+
|
|
3699
4217
|
div.promo-content h2 span.glyphicon-coffee-cup,
|
|
3700
4218
|
div.help-container span.glyphicon-coffee-cup {
|
|
3701
4219
|
color: var(--triple-word-color);
|
|
3702
4220
|
}
|
|
4221
|
+
|
|
3703
4222
|
div.promo-krafla {
|
|
3704
4223
|
background-color: var(--board-background);
|
|
3705
4224
|
}
|
|
4225
|
+
|
|
3706
4226
|
div.btn-krafla-yes {
|
|
3707
4227
|
text-align: center;
|
|
3708
4228
|
font-size: 18px;
|
|
@@ -3720,6 +4240,7 @@ div.btn-krafla-yes {
|
|
|
3720
4240
|
top: auto;
|
|
3721
4241
|
background-color: var(--ok-button);
|
|
3722
4242
|
}
|
|
4243
|
+
|
|
3723
4244
|
div#btn-thanks {
|
|
3724
4245
|
text-align: center;
|
|
3725
4246
|
font-size: 18px;
|
|
@@ -3738,6 +4259,7 @@ div#btn-thanks {
|
|
|
3738
4259
|
top: auto;
|
|
3739
4260
|
background-color: var(--ok-button);
|
|
3740
4261
|
}
|
|
4262
|
+
|
|
3741
4263
|
div#btn-cancel-yes {
|
|
3742
4264
|
text-align: center;
|
|
3743
4265
|
font-size: 18px;
|
|
@@ -3755,6 +4277,7 @@ div#btn-cancel-yes {
|
|
|
3755
4277
|
top: auto;
|
|
3756
4278
|
background-color: var(--cancel-button);
|
|
3757
4279
|
}
|
|
4280
|
+
|
|
3758
4281
|
div#btn-cancel-no {
|
|
3759
4282
|
text-align: center;
|
|
3760
4283
|
font-size: 18px;
|
|
@@ -3772,19 +4295,23 @@ div#btn-cancel-no {
|
|
|
3772
4295
|
top: auto;
|
|
3773
4296
|
background-color: var(--ok-button);
|
|
3774
4297
|
}
|
|
3775
|
-
|
|
3776
|
-
.
|
|
4298
|
+
|
|
4299
|
+
div.help-tabs .ui-tabs-panel a:link,
|
|
4300
|
+
div.help-tabs .ui-tabs-panel a:visited {
|
|
3777
4301
|
text-decoration: none;
|
|
3778
|
-
color:
|
|
4302
|
+
color: var(--humangrad-color);
|
|
3779
4303
|
}
|
|
3780
|
-
|
|
4304
|
+
|
|
4305
|
+
div.help-tabs .ui-tabs-panel a:hover {
|
|
3781
4306
|
text-decoration: none;
|
|
3782
|
-
color: var(--
|
|
4307
|
+
color: var(--pass-button);
|
|
3783
4308
|
}
|
|
4309
|
+
|
|
3784
4310
|
a.ui-tabs-anchor:link,
|
|
3785
4311
|
a.ui-tabs-anchor:visited {
|
|
3786
4312
|
color: white;
|
|
3787
4313
|
}
|
|
4314
|
+
|
|
3788
4315
|
.notifier {
|
|
3789
4316
|
display: none;
|
|
3790
4317
|
/* Set to inline-block by the script if shown */
|
|
@@ -3801,6 +4328,7 @@ a.ui-tabs-anchor:visited {
|
|
|
3801
4328
|
margin-top: 16px;
|
|
3802
4329
|
vertical-align: top;
|
|
3803
4330
|
}
|
|
4331
|
+
|
|
3804
4332
|
span#numgames {
|
|
3805
4333
|
display: none;
|
|
3806
4334
|
/* Set to inline-block by the script if shown */
|
|
@@ -3817,6 +4345,7 @@ span#numgames {
|
|
|
3817
4345
|
margin-top: 16px;
|
|
3818
4346
|
vertical-align: top;
|
|
3819
4347
|
}
|
|
4348
|
+
|
|
3820
4349
|
span#numchallenges {
|
|
3821
4350
|
display: none;
|
|
3822
4351
|
/* Set to inline-block by the script if shown */
|
|
@@ -3833,10 +4362,12 @@ span#numchallenges {
|
|
|
3833
4362
|
margin-top: 16px;
|
|
3834
4363
|
vertical-align: top;
|
|
3835
4364
|
}
|
|
4365
|
+
|
|
3836
4366
|
div.smallprint {
|
|
3837
4367
|
font-size: 12px;
|
|
3838
4368
|
padding-top: 6px;
|
|
3839
4369
|
}
|
|
4370
|
+
|
|
3840
4371
|
div.userid {
|
|
3841
4372
|
position: absolute;
|
|
3842
4373
|
top: 22px;
|
|
@@ -3858,10 +4389,12 @@ div.userid {
|
|
|
3858
4389
|
border-radius: 5px;
|
|
3859
4390
|
cursor: pointer;
|
|
3860
4391
|
}
|
|
4392
|
+
|
|
3861
4393
|
div.userid:hover {
|
|
3862
|
-
background-color:
|
|
4394
|
+
background-color: var(--humangrad-color);
|
|
3863
4395
|
color: white;
|
|
3864
4396
|
}
|
|
4397
|
+
|
|
3865
4398
|
div.listitem {
|
|
3866
4399
|
display: flex;
|
|
3867
4400
|
flex-direction: row;
|
|
@@ -3874,26 +4407,34 @@ div.listitem {
|
|
|
3874
4407
|
white-space: nowrap;
|
|
3875
4408
|
justify-items: center;
|
|
3876
4409
|
}
|
|
4410
|
+
|
|
3877
4411
|
.listheader > span {
|
|
3878
4412
|
top: 0;
|
|
3879
4413
|
}
|
|
4414
|
+
|
|
3880
4415
|
.listitem a {
|
|
4416
|
+
display: flex;
|
|
3881
4417
|
cursor: pointer;
|
|
3882
4418
|
}
|
|
4419
|
+
|
|
3883
4420
|
.listitem a:link,
|
|
3884
4421
|
.listitem a:visited {
|
|
3885
4422
|
color: black;
|
|
3886
4423
|
text-decoration: none;
|
|
3887
4424
|
}
|
|
4425
|
+
|
|
3888
4426
|
.listitem a:hover {
|
|
3889
|
-
color: var(--
|
|
4427
|
+
color: var(--pass-button);
|
|
3890
4428
|
}
|
|
4429
|
+
|
|
3891
4430
|
div.oddlist {
|
|
3892
4431
|
background-color: var(--board-background);
|
|
3893
4432
|
}
|
|
4433
|
+
|
|
3894
4434
|
div.evenlist {
|
|
3895
4435
|
background-color: #F7F0DE;
|
|
3896
4436
|
}
|
|
4437
|
+
|
|
3897
4438
|
div.listheader {
|
|
3898
4439
|
background-color: var(--list-header-background);
|
|
3899
4440
|
font-weight: 400;
|
|
@@ -3901,9 +4442,11 @@ div.listheader {
|
|
|
3901
4442
|
border-bottom-color: var(--list-header-bottom);
|
|
3902
4443
|
border-bottom-style: solid;
|
|
3903
4444
|
}
|
|
4445
|
+
|
|
3904
4446
|
div#elo-hdr span {
|
|
3905
4447
|
cursor: default;
|
|
3906
4448
|
}
|
|
4449
|
+
|
|
3907
4450
|
div#elo-toggler {
|
|
3908
4451
|
display: inline-block;
|
|
3909
4452
|
position: absolute;
|
|
@@ -3913,21 +4456,26 @@ div#elo-toggler {
|
|
|
3913
4456
|
right: 6px;
|
|
3914
4457
|
z-index: 10;
|
|
3915
4458
|
}
|
|
4459
|
+
|
|
3916
4460
|
span.bold {
|
|
3917
4461
|
font-weight: 700;
|
|
3918
4462
|
}
|
|
4463
|
+
|
|
3919
4464
|
div#initials {
|
|
3920
4465
|
margin-top: 8px;
|
|
3921
4466
|
margin-bottom: 14px;
|
|
3922
4467
|
padding: 0;
|
|
3923
4468
|
}
|
|
4469
|
+
|
|
3924
4470
|
div.user-cat {
|
|
3925
4471
|
display: inline-block;
|
|
3926
4472
|
vertical-align: middle;
|
|
3927
4473
|
}
|
|
4474
|
+
|
|
3928
4475
|
div.user-cat#user-search {
|
|
3929
4476
|
float: right;
|
|
3930
4477
|
}
|
|
4478
|
+
|
|
3931
4479
|
div.user-cat span {
|
|
3932
4480
|
font-size: 16px;
|
|
3933
4481
|
cursor: pointer;
|
|
@@ -3937,20 +4485,24 @@ div.user-cat span {
|
|
|
3937
4485
|
padding-right: 6px;
|
|
3938
4486
|
margin: 2px;
|
|
3939
4487
|
}
|
|
4488
|
+
|
|
3940
4489
|
div.user-cat span.shown {
|
|
3941
4490
|
background-color: rgba(158, 213, 218, 0.3);
|
|
3942
4491
|
border-radius: 5px;
|
|
3943
4492
|
}
|
|
4493
|
+
|
|
3944
4494
|
div.user-cat span:hover {
|
|
3945
4495
|
color: white;
|
|
3946
4496
|
background-color: var(--header-hover-color);
|
|
3947
4497
|
border-radius: 5px;
|
|
3948
4498
|
}
|
|
4499
|
+
|
|
3949
4500
|
div.user-cat#user-search span.glyphicon-search {
|
|
3950
4501
|
padding-top: 6px;
|
|
3951
4502
|
padding-bottom: 6px;
|
|
3952
4503
|
top: 0;
|
|
3953
4504
|
}
|
|
4505
|
+
|
|
3954
4506
|
span.versus-cat span {
|
|
3955
4507
|
font-size: 16px;
|
|
3956
4508
|
cursor: pointer;
|
|
@@ -3960,15 +4512,18 @@ span.versus-cat span {
|
|
|
3960
4512
|
padding-right: 6px;
|
|
3961
4513
|
margin: 2px;
|
|
3962
4514
|
}
|
|
4515
|
+
|
|
3963
4516
|
span.versus-cat span.shown {
|
|
3964
4517
|
background-color: rgba(158, 213, 218, 0.2);
|
|
3965
4518
|
border-radius: 5px;
|
|
3966
4519
|
}
|
|
4520
|
+
|
|
3967
4521
|
span.versus-cat span:hover {
|
|
3968
4522
|
color: white;
|
|
3969
4523
|
background-color: var(--double-letter-color);
|
|
3970
4524
|
border-radius: 5px;
|
|
3971
4525
|
}
|
|
4526
|
+
|
|
3972
4527
|
span.ready-btn {
|
|
3973
4528
|
position: relative;
|
|
3974
4529
|
top: 2px;
|
|
@@ -3984,15 +4539,17 @@ span.ready-btn {
|
|
|
3984
4539
|
top: 0;
|
|
3985
4540
|
cursor: default; /* Not a pushable button even though it looks like one */
|
|
3986
4541
|
color: white;
|
|
3987
|
-
background-color: var(--
|
|
4542
|
+
background-color: var(--option-selected);
|
|
3988
4543
|
border-radius: 5px;
|
|
3989
4544
|
padding: 4px;
|
|
3990
4545
|
margin: 0 4px 0 0;
|
|
3991
4546
|
}
|
|
4547
|
+
|
|
3992
4548
|
span.ready-btn:before {
|
|
3993
4549
|
content: "\E344";
|
|
3994
4550
|
/* thumbs-up */
|
|
3995
4551
|
}
|
|
4552
|
+
|
|
3996
4553
|
span.timed-btn {
|
|
3997
4554
|
position: relative;
|
|
3998
4555
|
top: 2px;
|
|
@@ -4008,15 +4565,17 @@ span.timed-btn {
|
|
|
4008
4565
|
top: 0px;
|
|
4009
4566
|
cursor: default;
|
|
4010
4567
|
color: white;
|
|
4011
|
-
background-color:
|
|
4568
|
+
background-color: var(--triple-word-color);
|
|
4012
4569
|
border-radius: 5px;
|
|
4013
4570
|
padding: 4px;
|
|
4014
4571
|
margin: 0 4px 0 0;
|
|
4015
4572
|
}
|
|
4573
|
+
|
|
4016
4574
|
span.timed-btn:before {
|
|
4017
4575
|
content: "\E055";
|
|
4018
4576
|
/* time */
|
|
4019
4577
|
}
|
|
4578
|
+
|
|
4020
4579
|
span.fairplay-btn {
|
|
4021
4580
|
position: relative;
|
|
4022
4581
|
top: 2px;
|
|
@@ -4037,10 +4596,12 @@ span.fairplay-btn {
|
|
|
4037
4596
|
padding: 4px;
|
|
4038
4597
|
margin: 0 4px 0 0;
|
|
4039
4598
|
}
|
|
4599
|
+
|
|
4040
4600
|
span.fairplay-btn:before {
|
|
4041
4601
|
content: "\E151";
|
|
4042
4602
|
/* edit */
|
|
4043
4603
|
}
|
|
4604
|
+
|
|
4044
4605
|
span.fairplay-btn.large {
|
|
4045
4606
|
/* This is shown in the board header */
|
|
4046
4607
|
top: 0;
|
|
@@ -4051,6 +4612,7 @@ span.fairplay-btn.large {
|
|
|
4051
4612
|
padding: 2px;
|
|
4052
4613
|
padding-bottom: 4px;
|
|
4053
4614
|
}
|
|
4615
|
+
|
|
4054
4616
|
span.manual-btn {
|
|
4055
4617
|
position: relative;
|
|
4056
4618
|
top: 2px;
|
|
@@ -4071,10 +4633,12 @@ span.manual-btn {
|
|
|
4071
4633
|
padding: 4px;
|
|
4072
4634
|
margin: 0 4px 0 0;
|
|
4073
4635
|
}
|
|
4636
|
+
|
|
4074
4637
|
span.manual-btn:before {
|
|
4075
4638
|
content: "\E065";
|
|
4076
4639
|
/* lightbulb */
|
|
4077
4640
|
}
|
|
4641
|
+
|
|
4078
4642
|
span.elo-btn {
|
|
4079
4643
|
display: inline-block;
|
|
4080
4644
|
width: 30px;
|
|
@@ -4088,32 +4652,40 @@ span.elo-btn {
|
|
|
4088
4652
|
padding: 5px 6px;
|
|
4089
4653
|
margin: 0;
|
|
4090
4654
|
}
|
|
4655
|
+
|
|
4091
4656
|
span.elo-btn .glyphicon {
|
|
4092
4657
|
font-size: 15px;
|
|
4093
4658
|
line-height: 12px;
|
|
4094
4659
|
}
|
|
4660
|
+
|
|
4095
4661
|
span.elo-btn.left {
|
|
4096
4662
|
margin-left: 6px;
|
|
4097
4663
|
margin-right: 4px;
|
|
4098
4664
|
}
|
|
4665
|
+
|
|
4099
4666
|
span.elo-btn.right {
|
|
4100
4667
|
margin-left: 4px;
|
|
4101
4668
|
margin-right: 6px;
|
|
4102
4669
|
}
|
|
4670
|
+
|
|
4103
4671
|
span.elo-btn.invisible {
|
|
4104
4672
|
visibility: hidden;
|
|
4105
4673
|
}
|
|
4674
|
+
|
|
4106
4675
|
span.elo-btn.elo-win {
|
|
4107
4676
|
background-color: var(--ok-button);
|
|
4108
4677
|
}
|
|
4678
|
+
|
|
4109
4679
|
span.elo-btn.elo-loss {
|
|
4110
4680
|
background-color: var(--cancel-button);
|
|
4111
4681
|
}
|
|
4682
|
+
|
|
4112
4683
|
span.elo-btn.elo-neutral {
|
|
4113
|
-
background-color: var(--
|
|
4684
|
+
background-color: var(--option-selected);
|
|
4114
4685
|
}
|
|
4686
|
+
|
|
4115
4687
|
span.elo-hdr-left {
|
|
4116
|
-
background-color: var(--
|
|
4688
|
+
background-color: var(--option-selected);
|
|
4117
4689
|
color: white;
|
|
4118
4690
|
border-radius: 5px;
|
|
4119
4691
|
padding: 4px;
|
|
@@ -4123,8 +4695,9 @@ span.elo-hdr-left {
|
|
|
4123
4695
|
margin-right: 6px;
|
|
4124
4696
|
top: 0px;
|
|
4125
4697
|
}
|
|
4698
|
+
|
|
4126
4699
|
span.elo-hdr-right {
|
|
4127
|
-
background-color: var(--
|
|
4700
|
+
background-color: var(--option-selected);
|
|
4128
4701
|
color: white;
|
|
4129
4702
|
border-radius: 5px;
|
|
4130
4703
|
padding: 4px;
|
|
@@ -4134,6 +4707,7 @@ span.elo-hdr-right {
|
|
|
4134
4707
|
margin-right: 6px;
|
|
4135
4708
|
top: 0px;
|
|
4136
4709
|
}
|
|
4710
|
+
|
|
4137
4711
|
span.usr-info {
|
|
4138
4712
|
position: relative;
|
|
4139
4713
|
top: 2px;
|
|
@@ -4149,21 +4723,25 @@ span.usr-info {
|
|
|
4149
4723
|
top: 0px;
|
|
4150
4724
|
cursor: pointer;
|
|
4151
4725
|
color: white;
|
|
4152
|
-
background-color: var(--
|
|
4726
|
+
background-color: var(--header-color);
|
|
4153
4727
|
border-radius: 5px;
|
|
4154
4728
|
padding: 4px;
|
|
4155
4729
|
margin: 0;
|
|
4156
4730
|
}
|
|
4731
|
+
|
|
4157
4732
|
span.usr-info:before {
|
|
4158
4733
|
content: "\E028";
|
|
4159
4734
|
/* Search */
|
|
4160
4735
|
}
|
|
4736
|
+
|
|
4161
4737
|
span.usr-info:hover {
|
|
4162
|
-
background-color: var(--
|
|
4738
|
+
background-color: var(--pass-button);
|
|
4163
4739
|
}
|
|
4740
|
+
|
|
4164
4741
|
#userlist span.glyphicon.glyphicon-star {
|
|
4165
|
-
color: var(--
|
|
4742
|
+
color: var(--header-color);
|
|
4166
4743
|
}
|
|
4744
|
+
|
|
4167
4745
|
#userlist span.glyphicon.glyphicon-hand-right,
|
|
4168
4746
|
#elolist span.glyphicon.glyphicon-hand-right,
|
|
4169
4747
|
#chall-sent span.glyphicon.glyphicon-hand-right,
|
|
@@ -4171,16 +4749,19 @@ span.usr-info:hover {
|
|
|
4171
4749
|
p span.glyphicon.glyphicon-flag,
|
|
4172
4750
|
#gamelist span.glyphicon.glyphicon-flag,
|
|
4173
4751
|
#gamelist span.glyphicon.glyphicon-hourglass {
|
|
4174
|
-
color: var(--
|
|
4752
|
+
color: var(--pass-button);
|
|
4175
4753
|
}
|
|
4754
|
+
|
|
4176
4755
|
#recentlist span.glyphicon.glyphicon-bookmark,
|
|
4177
4756
|
#usr-recent span.glyphicon.glyphicon-bookmark,
|
|
4178
4757
|
#gamelist span.glyphicon.glyphicon-bookmark {
|
|
4179
4758
|
color: var(--ok-button);
|
|
4180
4759
|
}
|
|
4760
|
+
|
|
4181
4761
|
span.glyphicon.glyphicon-lightbulb.grayed {
|
|
4182
4762
|
color: rgba(0, 0, 0, 0.2);
|
|
4183
4763
|
}
|
|
4764
|
+
|
|
4184
4765
|
.listheader span.glyphicon.glyphicon-star-empty,
|
|
4185
4766
|
.listheader span.glyphicon.glyphicon-hand-right.grayed,
|
|
4186
4767
|
.listheader span.glyphicon.glyphicon-thumbs-down.grayed,
|
|
@@ -4191,10 +4772,12 @@ span.glyphicon.glyphicon-lightbulb.grayed {
|
|
|
4191
4772
|
#elolist span.glyphicon.glyphicon-hand-right.grayed {
|
|
4192
4773
|
color: rgba(0, 0, 0, 0.15);
|
|
4193
4774
|
}
|
|
4775
|
+
|
|
4194
4776
|
span.glyphicon.glyphicon-hourglass.grayed,
|
|
4195
4777
|
span.glyphicon.glyphicon-shopping-bag.grayed {
|
|
4196
4778
|
color: rgba(0, 0, 0, 0.1);
|
|
4197
4779
|
}
|
|
4780
|
+
|
|
4198
4781
|
.listheader span.glyphicon.glyphicon-bookmark.grayed,
|
|
4199
4782
|
#recentlist span.glyphicon.glyphicon-bookmark.grayed,
|
|
4200
4783
|
#usr-recent span.glyphicon.glyphicon-bookmark.grayed,
|
|
@@ -4202,9 +4785,11 @@ span.glyphicon.glyphicon-shopping-bag.grayed {
|
|
|
4202
4785
|
#gamelist span.glyphicon.glyphicon-hourglass.grayed {
|
|
4203
4786
|
color: rgba(0, 0, 0, 0.06);
|
|
4204
4787
|
}
|
|
4788
|
+
|
|
4205
4789
|
#gamelist span.glyphicon.glyphicon-flag.zombie {
|
|
4206
4790
|
color: var(--double-letter-color);
|
|
4207
4791
|
}
|
|
4792
|
+
|
|
4208
4793
|
div#user-no-match {
|
|
4209
4794
|
display: none;
|
|
4210
4795
|
position: absolute;
|
|
@@ -4214,17 +4799,22 @@ div#user-no-match {
|
|
|
4214
4799
|
z-index: 10;
|
|
4215
4800
|
text-align: center;
|
|
4216
4801
|
}
|
|
4802
|
+
|
|
4217
4803
|
div#user-no-match span#search-prefix {
|
|
4218
4804
|
font-weight: bold;
|
|
4219
4805
|
}
|
|
4806
|
+
|
|
4220
4807
|
div.modal-close {
|
|
4808
|
+
display: flex;
|
|
4809
|
+
flex-direction: row;
|
|
4810
|
+
align-items: center;
|
|
4811
|
+
justify-content: center;
|
|
4221
4812
|
text-align: center;
|
|
4222
4813
|
font-size: 18px;
|
|
4223
4814
|
font-weight: 700;
|
|
4224
4815
|
color: white;
|
|
4225
4816
|
margin: 0;
|
|
4226
4817
|
padding: 6px;
|
|
4227
|
-
padding-top: 9px;
|
|
4228
4818
|
border-radius: 5px;
|
|
4229
4819
|
cursor: pointer;
|
|
4230
4820
|
position: absolute;
|
|
@@ -4234,32 +4824,38 @@ div.modal-close {
|
|
|
4234
4824
|
right: 12px;
|
|
4235
4825
|
top: auto;
|
|
4236
4826
|
}
|
|
4827
|
+
|
|
4237
4828
|
div#usr-info-close {
|
|
4238
4829
|
width: 72px;
|
|
4239
4830
|
/* Override */
|
|
4240
4831
|
background-color: var(--ok-button);
|
|
4241
4832
|
}
|
|
4833
|
+
|
|
4242
4834
|
div#load-game {
|
|
4243
4835
|
width: 72px;
|
|
4244
4836
|
/* Override */
|
|
4245
4837
|
background-color: var(--ok-button);
|
|
4246
4838
|
}
|
|
4839
|
+
|
|
4247
4840
|
div#wait-cancel {
|
|
4248
4841
|
right: 12px;
|
|
4249
4842
|
width: 72px;
|
|
4250
4843
|
/* Override */
|
|
4251
4844
|
background-color: var(--cancel-button);
|
|
4252
4845
|
}
|
|
4846
|
+
|
|
4253
4847
|
div#accept-cancel {
|
|
4254
4848
|
right: 12px;
|
|
4255
4849
|
width: 72px;
|
|
4256
4850
|
/* Override */
|
|
4257
4851
|
background-color: var(--cancel-button);
|
|
4258
4852
|
}
|
|
4853
|
+
|
|
4259
4854
|
div#blank-close,
|
|
4260
4855
|
div#promo-close {
|
|
4261
4856
|
background-color: var(--cancel-button);
|
|
4262
4857
|
}
|
|
4858
|
+
|
|
4263
4859
|
div#thanks-form {
|
|
4264
4860
|
position: absolute;
|
|
4265
4861
|
padding-left: 12px;
|
|
@@ -4276,6 +4872,7 @@ div#thanks-form {
|
|
|
4276
4872
|
height: 248px;
|
|
4277
4873
|
line-height: 1.62em;
|
|
4278
4874
|
}
|
|
4875
|
+
|
|
4279
4876
|
div#cancel-form {
|
|
4280
4877
|
position: absolute;
|
|
4281
4878
|
padding-left: 12px;
|
|
@@ -4292,6 +4889,7 @@ div#cancel-form {
|
|
|
4292
4889
|
height: 372px;
|
|
4293
4890
|
line-height: 1.62em;
|
|
4294
4891
|
}
|
|
4892
|
+
|
|
4295
4893
|
div#confirm-form {
|
|
4296
4894
|
position: absolute;
|
|
4297
4895
|
padding-left: 12px;
|
|
@@ -4308,6 +4906,7 @@ div#confirm-form {
|
|
|
4308
4906
|
height: 200px;
|
|
4309
4907
|
line-height: 1.62em;
|
|
4310
4908
|
}
|
|
4909
|
+
|
|
4311
4910
|
div#conditions-form {
|
|
4312
4911
|
position: absolute;
|
|
4313
4912
|
padding-left: 12px;
|
|
@@ -4326,6 +4925,7 @@ div#conditions-form {
|
|
|
4326
4925
|
padding-left: 24px;
|
|
4327
4926
|
padding-right: 24px;
|
|
4328
4927
|
}
|
|
4928
|
+
|
|
4329
4929
|
div#usr-info-form {
|
|
4330
4930
|
position: absolute;
|
|
4331
4931
|
padding-left: 12px;
|
|
@@ -4341,6 +4941,7 @@ div#usr-info-form {
|
|
|
4341
4941
|
width: 884px;
|
|
4342
4942
|
height: 644px;
|
|
4343
4943
|
}
|
|
4944
|
+
|
|
4344
4945
|
div.thanks-content,
|
|
4345
4946
|
div#cancel-content,
|
|
4346
4947
|
div#confirm-content {
|
|
@@ -4348,64 +4949,81 @@ div#confirm-content {
|
|
|
4348
4949
|
margin-left: 24px;
|
|
4349
4950
|
margin-right: 24px;
|
|
4350
4951
|
}
|
|
4952
|
+
|
|
4351
4953
|
div.usr-info-hdr {
|
|
4954
|
+
display: flex;
|
|
4955
|
+
flex-direction: row;
|
|
4956
|
+
align-items: center;
|
|
4352
4957
|
font-size: 18px;
|
|
4353
4958
|
margin-top: 0px;
|
|
4354
4959
|
margin-bottom: 0px;
|
|
4355
4960
|
}
|
|
4961
|
+
|
|
4356
4962
|
div.usr-info-hdr h1 {
|
|
4357
|
-
display:
|
|
4963
|
+
display: block;
|
|
4358
4964
|
font-size: 36px;
|
|
4359
4965
|
font-weight: bold;
|
|
4966
|
+
margin-right: 3px;
|
|
4360
4967
|
}
|
|
4968
|
+
|
|
4361
4969
|
div.usr-info-hdr h2 {
|
|
4362
|
-
display:
|
|
4970
|
+
display: block;
|
|
4363
4971
|
font-size: 24px;
|
|
4364
4972
|
font-weight: bold;
|
|
4365
4973
|
}
|
|
4974
|
+
|
|
4366
4975
|
span.vbar {
|
|
4367
4976
|
color: var(--light-background);
|
|
4368
4977
|
font-size: 2em;
|
|
4369
4978
|
padding-left: 10px;
|
|
4370
4979
|
padding-right: 10px;
|
|
4371
4980
|
}
|
|
4981
|
+
|
|
4372
4982
|
h1.usr-info-icon {
|
|
4373
4983
|
color: var(--light-background);
|
|
4374
4984
|
}
|
|
4985
|
+
|
|
4375
4986
|
h1.usr-info-icon span.glyphicon-coffee-cup {
|
|
4376
4987
|
color: var(--ok-button);
|
|
4377
4988
|
}
|
|
4989
|
+
|
|
4378
4990
|
div.usr-info-fav {
|
|
4379
|
-
display:
|
|
4991
|
+
display: block;
|
|
4380
4992
|
position: absolute;
|
|
4381
|
-
top:
|
|
4993
|
+
top: 16px;
|
|
4382
4994
|
right: 20px;
|
|
4383
4995
|
color: var(--triple-letter-color);
|
|
4384
4996
|
font-size: 26px;
|
|
4385
4997
|
cursor: pointer;
|
|
4386
4998
|
}
|
|
4999
|
+
|
|
4387
5000
|
div.usr-info-fav span.glyphicon-star-empty {
|
|
4388
5001
|
color: rgba(0, 0, 0, 0.15);
|
|
4389
5002
|
}
|
|
5003
|
+
|
|
4390
5004
|
div#usr-info-chall {
|
|
4391
5005
|
display: inline-block;
|
|
4392
5006
|
position: absolute;
|
|
4393
5007
|
top: 68px;
|
|
4394
5008
|
right: 20px;
|
|
4395
5009
|
}
|
|
5010
|
+
|
|
4396
5011
|
div#usr-info-chall.chall span.glyphicon-hand-right {
|
|
4397
5012
|
font-size: 26px;
|
|
4398
5013
|
color: var(--triple-word-color);
|
|
4399
5014
|
}
|
|
5015
|
+
|
|
4400
5016
|
div#usr-info-chall.no-chall span.glyphicon-hand-right {
|
|
4401
5017
|
font-size: 26px;
|
|
4402
5018
|
color: rgba(0, 0, 0, 0.15);
|
|
4403
5019
|
}
|
|
5020
|
+
|
|
4404
5021
|
span.best-word {
|
|
4405
5022
|
text-transform: uppercase;
|
|
4406
5023
|
font-weight: bold;
|
|
4407
5024
|
font-style: italic;
|
|
4408
5025
|
}
|
|
5026
|
+
|
|
4409
5027
|
p#usr-best {
|
|
4410
5028
|
display: inline-block;
|
|
4411
5029
|
position: absolute;
|
|
@@ -4413,19 +5031,23 @@ p#usr-best {
|
|
|
4413
5031
|
top: 50px;
|
|
4414
5032
|
text-align: right;
|
|
4415
5033
|
}
|
|
5034
|
+
|
|
4416
5035
|
p#usr-best a:link,
|
|
4417
5036
|
p#usr-best a:visited {
|
|
4418
5037
|
text-decoration: none;
|
|
4419
|
-
color:
|
|
5038
|
+
color: var(--stats-foreground);
|
|
4420
5039
|
}
|
|
5040
|
+
|
|
4421
5041
|
p#usr-best a:hover {
|
|
4422
5042
|
text-decoration: none;
|
|
4423
|
-
color: var(--
|
|
5043
|
+
color: var(--logo-accent);
|
|
4424
5044
|
}
|
|
5045
|
+
|
|
4425
5046
|
div#stats-toggler {
|
|
4426
5047
|
margin-top: 7px;
|
|
4427
5048
|
margin-right: 8px;
|
|
4428
5049
|
}
|
|
5050
|
+
|
|
4429
5051
|
div#usr-stats {
|
|
4430
5052
|
position: absolute;
|
|
4431
5053
|
height: 48px;
|
|
@@ -4434,46 +5056,56 @@ div#usr-stats {
|
|
|
4434
5056
|
left: 12px;
|
|
4435
5057
|
vertical-align: top;
|
|
4436
5058
|
}
|
|
5059
|
+
|
|
4437
5060
|
div#usr-stats-human {
|
|
4438
5061
|
display: inline-block;
|
|
4439
5062
|
vertical-align: top;
|
|
4440
5063
|
}
|
|
5064
|
+
|
|
4441
5065
|
div#usr-stats-all {
|
|
4442
5066
|
display: none;
|
|
4443
5067
|
vertical-align: top;
|
|
4444
5068
|
}
|
|
5069
|
+
|
|
4445
5070
|
div#own-stats-human {
|
|
4446
5071
|
display: inline-block;
|
|
4447
5072
|
vertical-align: top;
|
|
4448
5073
|
}
|
|
5074
|
+
|
|
4449
5075
|
div#own-stats-all {
|
|
4450
5076
|
display: none;
|
|
4451
5077
|
vertical-align: top;
|
|
4452
5078
|
}
|
|
5079
|
+
|
|
4453
5080
|
div.stats-games {
|
|
4454
|
-
color:
|
|
4455
|
-
border-color:
|
|
5081
|
+
color: var(--malfridur-secondary);
|
|
5082
|
+
border-color: var(--malfridur-secondary);
|
|
4456
5083
|
}
|
|
5084
|
+
|
|
4457
5085
|
div.stats-win-ratio {
|
|
4458
5086
|
color: var(--ok-button);
|
|
4459
5087
|
border-color: var(--ok-button);
|
|
4460
5088
|
}
|
|
5089
|
+
|
|
4461
5090
|
div.stats-avg-score {
|
|
4462
|
-
color:
|
|
4463
|
-
border-color:
|
|
5091
|
+
color: var(--logo-accent);
|
|
5092
|
+
border-color: var(--logo-accent);
|
|
4464
5093
|
}
|
|
5094
|
+
|
|
4465
5095
|
div.chall-hdr {
|
|
4466
5096
|
font-size: 18px;
|
|
4467
5097
|
margin-top: 6px;
|
|
4468
5098
|
margin-bottom: 15px;
|
|
4469
5099
|
overflow-x: hidden;
|
|
4470
5100
|
}
|
|
5101
|
+
|
|
4471
5102
|
div.chall-hdr table {
|
|
4472
5103
|
border-spacing: 0;
|
|
4473
5104
|
margin: 0;
|
|
4474
5105
|
padding: 0;
|
|
4475
5106
|
vertical-align: top;
|
|
4476
5107
|
}
|
|
5108
|
+
|
|
4477
5109
|
td.l-border {
|
|
4478
5110
|
border-left-style: solid;
|
|
4479
5111
|
border-left-color: black;
|
|
@@ -4481,6 +5113,7 @@ td.l-border {
|
|
|
4481
5113
|
padding-left: 12px;
|
|
4482
5114
|
white-space: nowrap;
|
|
4483
5115
|
}
|
|
5116
|
+
|
|
4484
5117
|
div.chall-hdr h1 {
|
|
4485
5118
|
display: inline-block;
|
|
4486
5119
|
font-size: 28px;
|
|
@@ -4490,21 +5123,24 @@ div.chall-hdr h1 {
|
|
|
4490
5123
|
margin-bottom: 8px;
|
|
4491
5124
|
font-weight: bold;
|
|
4492
5125
|
}
|
|
5126
|
+
|
|
4493
5127
|
div.chall-hdr h2 {
|
|
4494
5128
|
display: block;
|
|
4495
5129
|
font-size: 22px;
|
|
4496
5130
|
line-height: 24px;
|
|
4497
5131
|
margin-top: 6px;
|
|
4498
5132
|
margin-bottom: 4px;
|
|
4499
|
-
color:
|
|
5133
|
+
color: var(--humangrad-color);
|
|
4500
5134
|
}
|
|
5135
|
+
|
|
4501
5136
|
h1.chall-icon {
|
|
4502
5137
|
display: block;
|
|
4503
|
-
color:
|
|
5138
|
+
color: var(--humangrad-color);
|
|
4504
5139
|
margin-right: 12px;
|
|
4505
5140
|
margin-top: 0;
|
|
4506
5141
|
margin-bottom: 0;
|
|
4507
5142
|
}
|
|
5143
|
+
|
|
4508
5144
|
div.chall-time {
|
|
4509
5145
|
display: inline-block;
|
|
4510
5146
|
width: 300px;
|
|
@@ -4520,24 +5156,29 @@ div.chall-time {
|
|
|
4520
5156
|
font-size: 20px;
|
|
4521
5157
|
font-weight: 700;
|
|
4522
5158
|
line-height: 22px;
|
|
4523
|
-
background-color:
|
|
5159
|
+
background-color: var(--middle-shadow);
|
|
4524
5160
|
color: white;
|
|
4525
5161
|
cursor: pointer;
|
|
4526
5162
|
border-radius: 4px;
|
|
4527
5163
|
}
|
|
5164
|
+
|
|
4528
5165
|
div.chall-time.selected {
|
|
4529
5166
|
background-color: var(--triple-word-color);
|
|
4530
5167
|
color: black;
|
|
4531
5168
|
}
|
|
5169
|
+
|
|
4532
5170
|
div.chall-time:hover {
|
|
4533
5171
|
background-color: var(--double-letter-color);
|
|
4534
5172
|
}
|
|
5173
|
+
|
|
4535
5174
|
div.chall-time.selected:hover {
|
|
4536
5175
|
background-color: var(--double-word-color);
|
|
4537
5176
|
}
|
|
5177
|
+
|
|
4538
5178
|
div.chall-time span.glyphicon-time {
|
|
4539
5179
|
margin-right: 8px;
|
|
4540
5180
|
}
|
|
5181
|
+
|
|
4541
5182
|
span#chall-online {
|
|
4542
5183
|
position: relative;
|
|
4543
5184
|
top: 2px;
|
|
@@ -4555,13 +5196,16 @@ span#chall-online {
|
|
|
4555
5196
|
padding: 5px;
|
|
4556
5197
|
margin: 0;
|
|
4557
5198
|
}
|
|
5199
|
+
|
|
4558
5200
|
span#chall-online:before {
|
|
4559
5201
|
content: "\E242";
|
|
4560
5202
|
/* Flash */
|
|
4561
5203
|
}
|
|
5204
|
+
|
|
4562
5205
|
span#chall-online.online {
|
|
4563
5206
|
background-color: var(--ok-button);
|
|
4564
5207
|
}
|
|
5208
|
+
|
|
4565
5209
|
div#chall-newbag {
|
|
4566
5210
|
margin-top: 24px;
|
|
4567
5211
|
padding-left: 6px;
|
|
@@ -4569,27 +5213,33 @@ div#chall-newbag {
|
|
|
4569
5213
|
font-size: 14px;
|
|
4570
5214
|
text-align: left;
|
|
4571
5215
|
}
|
|
5216
|
+
|
|
4572
5217
|
div#chall-newbag td {
|
|
4573
5218
|
vertical-align: middle;
|
|
4574
5219
|
padding-right: 12px;
|
|
4575
5220
|
}
|
|
5221
|
+
|
|
4576
5222
|
div#chall-manual {
|
|
4577
5223
|
margin-top: 4px;
|
|
4578
5224
|
font-size: 14px;
|
|
4579
5225
|
}
|
|
5226
|
+
|
|
4580
5227
|
div#manual-toggler {
|
|
4581
5228
|
margin-top: 12px;
|
|
4582
5229
|
margin-bottom: 0;
|
|
4583
5230
|
}
|
|
5231
|
+
|
|
4584
5232
|
div.wait-explain {
|
|
4585
5233
|
padding-left: 48px;
|
|
4586
5234
|
padding-right: 12px;
|
|
4587
5235
|
padding-top: 24px;
|
|
4588
5236
|
padding-bottom: 24px;
|
|
4589
5237
|
}
|
|
5238
|
+
|
|
4590
5239
|
div#user-dialog {
|
|
4591
5240
|
visibility: visible;
|
|
4592
5241
|
}
|
|
5242
|
+
|
|
4593
5243
|
div#user-form {
|
|
4594
5244
|
position: absolute;
|
|
4595
5245
|
padding-left: 12px;
|
|
@@ -4605,33 +5255,38 @@ div#user-form {
|
|
|
4605
5255
|
width: 736px;
|
|
4606
5256
|
height: 582px;
|
|
4607
5257
|
}
|
|
5258
|
+
|
|
4608
5259
|
div#user-logout {
|
|
4609
5260
|
left: 12px;
|
|
4610
5261
|
width: 144px;
|
|
4611
5262
|
/* Override */
|
|
4612
5263
|
background-color: var(--triple-word-color);
|
|
4613
5264
|
}
|
|
5265
|
+
|
|
4614
5266
|
div#user-friend {
|
|
4615
5267
|
left: 180px;
|
|
4616
5268
|
width: 280px;
|
|
4617
5269
|
/* Override */
|
|
4618
5270
|
background-color: var(--ok-button);
|
|
4619
5271
|
}
|
|
5272
|
+
|
|
4620
5273
|
div#user-unfriend {
|
|
4621
5274
|
left: 180px;
|
|
4622
5275
|
width: 280px;
|
|
4623
5276
|
/* Override */
|
|
4624
|
-
padding-top: 6px;
|
|
4625
5277
|
border-style: solid;
|
|
4626
5278
|
border-width: 2px;
|
|
4627
5279
|
border-color: var(--ok-button);
|
|
4628
5280
|
background-color: white;
|
|
4629
5281
|
color: var(--ok-button);
|
|
4630
|
-
line-height: 24px;
|
|
4631
5282
|
}
|
|
5283
|
+
|
|
4632
5284
|
div#user-unfriend span.glyphicon-coffee-cup {
|
|
4633
|
-
|
|
5285
|
+
top: -1px;
|
|
5286
|
+
color: var(--pass-button);
|
|
5287
|
+
margin-right: 8px;
|
|
4634
5288
|
}
|
|
5289
|
+
|
|
4635
5290
|
div#user-cancel {
|
|
4636
5291
|
right: 108px;
|
|
4637
5292
|
/* 12 + 72 + 12 + 12 */
|
|
@@ -4639,6 +5294,7 @@ div#user-cancel {
|
|
|
4639
5294
|
/* Override */
|
|
4640
5295
|
background-color: var(--cancel-button);
|
|
4641
5296
|
}
|
|
5297
|
+
|
|
4642
5298
|
div#user-ok {
|
|
4643
5299
|
right: 12px;
|
|
4644
5300
|
/* 12 */
|
|
@@ -4646,6 +5302,7 @@ div#user-ok {
|
|
|
4646
5302
|
/* Override */
|
|
4647
5303
|
background-color: var(--ok-button);
|
|
4648
5304
|
}
|
|
5305
|
+
|
|
4649
5306
|
div#accept-form {
|
|
4650
5307
|
position: absolute;
|
|
4651
5308
|
padding-left: 12px;
|
|
@@ -4661,6 +5318,7 @@ div#accept-form {
|
|
|
4661
5318
|
width: 335px;
|
|
4662
5319
|
height: 488px;
|
|
4663
5320
|
}
|
|
5321
|
+
|
|
4664
5322
|
h1#accept-nick {
|
|
4665
5323
|
display: inline-block;
|
|
4666
5324
|
font-size: 28px;
|
|
@@ -4669,48 +5327,59 @@ h1#accept-nick {
|
|
|
4669
5327
|
margin-top: 0;
|
|
4670
5328
|
margin-bottom: 8px;
|
|
4671
5329
|
}
|
|
5330
|
+
|
|
4672
5331
|
.blink {
|
|
4673
5332
|
animation: opacityBlink 1s infinite;
|
|
4674
5333
|
-webkit-animation: opacityBlink 1s infinite;
|
|
4675
5334
|
}
|
|
5335
|
+
|
|
4676
5336
|
.opp-ready {
|
|
4677
5337
|
animation: opacityBlink 1s infinite;
|
|
4678
5338
|
-webkit-animation: opacityBlink 1s infinite;
|
|
4679
5339
|
}
|
|
5340
|
+
|
|
4680
5341
|
a.opp-ready:link,
|
|
4681
5342
|
a.opp-ready:visited {
|
|
4682
5343
|
color: var(--cancel-button);
|
|
4683
5344
|
}
|
|
5345
|
+
|
|
4684
5346
|
a.opp-ready:hover {
|
|
4685
|
-
color: var(--
|
|
5347
|
+
color: var(--pass-button);
|
|
4686
5348
|
}
|
|
5349
|
+
|
|
4687
5350
|
div.blank-rack {
|
|
4688
5351
|
position: relative;
|
|
4689
5352
|
top: 0;
|
|
4690
5353
|
left: 0;
|
|
4691
5354
|
}
|
|
5355
|
+
|
|
4692
5356
|
.blank-rack table.board {
|
|
4693
5357
|
border-spacing: 8px;
|
|
4694
5358
|
}
|
|
5359
|
+
|
|
4695
5360
|
div.welcome {
|
|
4696
5361
|
font-size: 15px;
|
|
4697
5362
|
line-height: 20px;
|
|
4698
5363
|
font-weight: normal;
|
|
4699
5364
|
padding-bottom: 12px;
|
|
4700
5365
|
}
|
|
5366
|
+
|
|
4701
5367
|
.welcome a:link,
|
|
4702
5368
|
.welcome a:visited {
|
|
4703
5369
|
text-decoration: none;
|
|
4704
|
-
color:
|
|
5370
|
+
color: var(--humangrad-color);
|
|
4705
5371
|
}
|
|
5372
|
+
|
|
4706
5373
|
.welcome a:hover {
|
|
4707
5374
|
text-decoration: none;
|
|
4708
|
-
color: var(--
|
|
5375
|
+
color: var(--pass-button);
|
|
4709
5376
|
}
|
|
5377
|
+
|
|
4710
5378
|
div.dialog-spacer {
|
|
4711
5379
|
margin-top: 2px;
|
|
4712
5380
|
margin-bottom: 4px;
|
|
4713
5381
|
}
|
|
5382
|
+
|
|
4714
5383
|
span.caption {
|
|
4715
5384
|
display: inline-block;
|
|
4716
5385
|
position: relative;
|
|
@@ -4721,6 +5390,7 @@ span.caption {
|
|
|
4721
5390
|
overflow: hidden;
|
|
4722
5391
|
text-align: right;
|
|
4723
5392
|
}
|
|
5393
|
+
|
|
4724
5394
|
span.subcaption {
|
|
4725
5395
|
display: inline-block;
|
|
4726
5396
|
position: relative;
|
|
@@ -4729,15 +5399,18 @@ span.subcaption {
|
|
|
4729
5399
|
margin-left: 18px;
|
|
4730
5400
|
margin-right: 6px;
|
|
4731
5401
|
}
|
|
5402
|
+
|
|
4732
5403
|
span.caption.sub {
|
|
4733
5404
|
top: 16px;
|
|
4734
5405
|
}
|
|
5406
|
+
|
|
4735
5407
|
span.asterisk {
|
|
4736
5408
|
color: red;
|
|
4737
5409
|
font-size: 1.4em;
|
|
4738
5410
|
font-weight: bold;
|
|
4739
5411
|
margin-left: 4px;
|
|
4740
5412
|
}
|
|
5413
|
+
|
|
4741
5414
|
div.explain {
|
|
4742
5415
|
margin-left: 158px;
|
|
4743
5416
|
margin-bottom: 12px;
|
|
@@ -4746,6 +5419,7 @@ div.explain {
|
|
|
4746
5419
|
font-style: italic;
|
|
4747
5420
|
color: var(--light-shadow);
|
|
4748
5421
|
}
|
|
5422
|
+
|
|
4749
5423
|
div.subexplain {
|
|
4750
5424
|
display: inline-block;
|
|
4751
5425
|
width: 420px;
|
|
@@ -4756,6 +5430,7 @@ div.subexplain {
|
|
|
4756
5430
|
font-size: 14px;
|
|
4757
5431
|
color: var(--light-shadow);
|
|
4758
5432
|
}
|
|
5433
|
+
|
|
4759
5434
|
div.errinput {
|
|
4760
5435
|
margin-left: 158px;
|
|
4761
5436
|
margin-bottom: 10px;
|
|
@@ -4764,8 +5439,9 @@ div.errinput {
|
|
|
4764
5439
|
font-weight: bold;
|
|
4765
5440
|
color: var(--cancel-button);
|
|
4766
5441
|
}
|
|
5442
|
+
|
|
4767
5443
|
input.text {
|
|
4768
|
-
font-family: var(--primary-font);
|
|
5444
|
+
/* font-family: var(--primary-font); */
|
|
4769
5445
|
font-size: 20px;
|
|
4770
5446
|
font-weight: 700;
|
|
4771
5447
|
height: 32px;
|
|
@@ -4779,33 +5455,38 @@ input.text {
|
|
|
4779
5455
|
padding-left: 8px;
|
|
4780
5456
|
padding-right: 8px;
|
|
4781
5457
|
}
|
|
5458
|
+
|
|
4782
5459
|
input.text:focus {
|
|
4783
|
-
background-color:
|
|
5460
|
+
background-color: hsl(from var(--malfridur-secondary) h 85% 90%);
|
|
4784
5461
|
border-style: solid;
|
|
4785
5462
|
border-color: var(--ok-button);
|
|
4786
5463
|
border-width: 2px;
|
|
4787
5464
|
border-radius: 5px;
|
|
4788
5465
|
outline-style: none;
|
|
4789
5466
|
}
|
|
5467
|
+
|
|
4790
5468
|
input.username {
|
|
4791
5469
|
width: 300px;
|
|
4792
5470
|
}
|
|
5471
|
+
|
|
4793
5472
|
input.fullname {
|
|
4794
5473
|
width: 450px;
|
|
4795
5474
|
}
|
|
5475
|
+
|
|
4796
5476
|
input.email {
|
|
4797
5477
|
width: 400px;
|
|
4798
5478
|
}
|
|
5479
|
+
|
|
4799
5480
|
input.text#search-id {
|
|
4800
5481
|
font-weight: normal;
|
|
4801
5482
|
height: 28px;
|
|
4802
5483
|
font-size: 18px;
|
|
4803
|
-
border-color: var(--
|
|
5484
|
+
border-color: var(--header-color);
|
|
4804
5485
|
margin-top: 0px;
|
|
4805
5486
|
margin-bottom: 0px;
|
|
4806
5487
|
}
|
|
4807
|
-
|
|
4808
|
-
|
|
5488
|
+
|
|
5489
|
+
div.netskrafl-container button[type="submit"] {
|
|
4809
5490
|
font-size: 20px;
|
|
4810
5491
|
font-weight: 400;
|
|
4811
5492
|
height: 40px;
|
|
@@ -4825,20 +5506,25 @@ button[type="submit"] {
|
|
|
4825
5506
|
padding-right: 8px;
|
|
4826
5507
|
cursor: pointer;
|
|
4827
5508
|
}
|
|
4828
|
-
|
|
4829
|
-
button[type="submit"]:
|
|
5509
|
+
|
|
5510
|
+
div.netskrafl-container button[type="submit"]:focus,
|
|
5511
|
+
div.netskrafl-container button[type="submit"]:hover {
|
|
4830
5512
|
outline: var(--focus-border) solid 3px;
|
|
4831
5513
|
}
|
|
4832
|
-
|
|
5514
|
+
|
|
5515
|
+
div.netskrafl-container button.login {
|
|
4833
5516
|
margin-top: 24px;
|
|
4834
5517
|
}
|
|
4835
|
-
|
|
5518
|
+
|
|
5519
|
+
div.netskrafl-container button.logout {
|
|
4836
5520
|
margin-top: 80px;
|
|
4837
5521
|
background-color: var(--cancel-button);
|
|
4838
5522
|
}
|
|
4839
|
-
|
|
5523
|
+
|
|
5524
|
+
div.netskrafl-container input[type="checkbox"] {
|
|
4840
5525
|
display: none;
|
|
4841
5526
|
}
|
|
5527
|
+
|
|
4842
5528
|
div.toggler {
|
|
4843
5529
|
background-color: var(--light-background);
|
|
4844
5530
|
color: white;
|
|
@@ -4849,10 +5535,12 @@ div.toggler {
|
|
|
4849
5535
|
overflow: hidden;
|
|
4850
5536
|
border: white solid 3px;
|
|
4851
5537
|
}
|
|
5538
|
+
|
|
4852
5539
|
div.toggler:focus, div.toggler:hover {
|
|
4853
5540
|
outline-style: none;
|
|
4854
5541
|
border: var(--focus-border) solid 3px;
|
|
4855
5542
|
}
|
|
5543
|
+
|
|
4856
5544
|
div.toggler div.option {
|
|
4857
5545
|
display: inline-block;
|
|
4858
5546
|
width: 46px;
|
|
@@ -4864,6 +5552,7 @@ div.toggler div.option {
|
|
|
4864
5552
|
text-align: center;
|
|
4865
5553
|
border-style: none;
|
|
4866
5554
|
}
|
|
5555
|
+
|
|
4867
5556
|
div.toggler div.option.small {
|
|
4868
5557
|
width: 36px;
|
|
4869
5558
|
height: 24px;
|
|
@@ -4872,69 +5561,83 @@ div.toggler div.option.small {
|
|
|
4872
5561
|
padding-top: 3px;
|
|
4873
5562
|
padding-bottom: 2px;
|
|
4874
5563
|
}
|
|
5564
|
+
|
|
4875
5565
|
div.toggler div.option.x-small {
|
|
4876
5566
|
width: 30px;
|
|
4877
5567
|
height: 20px;
|
|
4878
|
-
line-height:
|
|
5568
|
+
line-height: 22px;
|
|
4879
5569
|
font-size: 15px;
|
|
4880
5570
|
padding-top: 1px;
|
|
4881
5571
|
padding-bottom: 3px;
|
|
4882
5572
|
}
|
|
5573
|
+
|
|
4883
5574
|
div.toggler div.option.selected {
|
|
4884
|
-
background-color: var(--
|
|
4885
|
-
}
|
|
4886
|
-
div#fairplay-toggler div.option.selected {
|
|
4887
|
-
background-color: var(--ok-button);
|
|
5575
|
+
background-color: var(--option-selected);
|
|
4888
5576
|
}
|
|
4889
|
-
|
|
4890
|
-
|
|
5577
|
+
|
|
5578
|
+
div.toggler span.glyphicon {
|
|
5579
|
+
display: inline-block;
|
|
5580
|
+
top: 1px;
|
|
4891
5581
|
}
|
|
5582
|
+
|
|
4892
5583
|
div #radioset {
|
|
4893
5584
|
padding-top: 6px;
|
|
4894
5585
|
padding-bottom: 24px;
|
|
4895
5586
|
}
|
|
5587
|
+
|
|
4896
5588
|
div.disabled {
|
|
4897
5589
|
background-color: var(--board-background);
|
|
4898
5590
|
}
|
|
5591
|
+
|
|
4899
5592
|
a.nodecorate:link {
|
|
4900
5593
|
text-decoration: none;
|
|
4901
5594
|
color: black;
|
|
4902
5595
|
}
|
|
5596
|
+
|
|
4903
5597
|
a.nodecorate:visited {
|
|
4904
5598
|
text-decoration: none;
|
|
4905
5599
|
color: black;
|
|
4906
5600
|
}
|
|
5601
|
+
|
|
4907
5602
|
a.nodecorate:hover {
|
|
4908
5603
|
text-decoration: none;
|
|
4909
|
-
color: var(--
|
|
5604
|
+
color: var(--pass-button);
|
|
4910
5605
|
}
|
|
5606
|
+
|
|
4911
5607
|
a.iconlink:link {
|
|
4912
5608
|
text-decoration: none;
|
|
4913
|
-
color: var(--
|
|
5609
|
+
color: var(--header-color);
|
|
4914
5610
|
}
|
|
5611
|
+
|
|
4915
5612
|
a.iconlink:visited {
|
|
4916
5613
|
text-decoration: none;
|
|
4917
|
-
color: var(--
|
|
5614
|
+
color: var(--header-color);
|
|
4918
5615
|
}
|
|
5616
|
+
|
|
4919
5617
|
a.iconlink:hover {
|
|
4920
5618
|
text-decoration: none;
|
|
4921
|
-
color: var(--
|
|
5619
|
+
color: var(--pass-button);
|
|
4922
5620
|
}
|
|
5621
|
+
|
|
4923
5622
|
a.backlink:link {
|
|
4924
5623
|
text-decoration: none;
|
|
4925
5624
|
color: var(--board-background);
|
|
4926
5625
|
}
|
|
5626
|
+
|
|
4927
5627
|
a.backlink:visited {
|
|
4928
5628
|
text-decoration: none;
|
|
4929
5629
|
color: var(--board-background);
|
|
4930
5630
|
}
|
|
5631
|
+
|
|
4931
5632
|
a.backlink:hover {
|
|
4932
5633
|
text-decoration: none;
|
|
4933
|
-
color: var(--
|
|
5634
|
+
color: var(--pass-button);
|
|
4934
5635
|
}
|
|
5636
|
+
|
|
4935
5637
|
div#tabs-1 p {
|
|
4936
5638
|
line-height: 1.6em;
|
|
4937
5639
|
}
|
|
5640
|
+
|
|
4938
5641
|
div#tabs-1 p img,
|
|
4939
5642
|
div#tabs-3 p img {
|
|
4940
5643
|
margin-left: 3px;
|
|
@@ -4942,33 +5645,40 @@ div#tabs-3 p img {
|
|
|
4942
5645
|
vertical-align: -3px;
|
|
4943
5646
|
display: inline;
|
|
4944
5647
|
}
|
|
5648
|
+
|
|
4945
5649
|
div#tabs-3 p,
|
|
4946
5650
|
div#tabs-3 ol li,
|
|
4947
5651
|
div#tabs-3 ol p,
|
|
4948
5652
|
div#tabs-3 ol ul li {
|
|
4949
5653
|
line-height: 1.65em;
|
|
4950
5654
|
}
|
|
5655
|
+
|
|
4951
5656
|
div#tabs-3 ol {
|
|
4952
5657
|
list-style-type: decimal;
|
|
4953
5658
|
margin: auto;
|
|
4954
5659
|
padding-inline-start: 40px;
|
|
4955
5660
|
}
|
|
5661
|
+
|
|
4956
5662
|
div#tabs-3 li {
|
|
4957
5663
|
display: list-item;
|
|
4958
5664
|
margin: auto;
|
|
4959
5665
|
padding: auto;
|
|
4960
5666
|
}
|
|
5667
|
+
|
|
4961
5668
|
div.help-container ol li {
|
|
4962
5669
|
font-weight: bold;
|
|
4963
5670
|
}
|
|
5671
|
+
|
|
4964
5672
|
div.help-container ul li {
|
|
4965
5673
|
font-weight: normal;
|
|
4966
5674
|
list-style-type: disc;
|
|
4967
5675
|
}
|
|
5676
|
+
|
|
4968
5677
|
div.help-container table {
|
|
4969
5678
|
border-spacing: 0;
|
|
4970
5679
|
border-collapse: collapse;
|
|
4971
5680
|
}
|
|
5681
|
+
|
|
4972
5682
|
div.help-container td {
|
|
4973
5683
|
margin: 0;
|
|
4974
5684
|
padding: 4px;
|
|
@@ -4979,27 +5689,33 @@ div.help-container td {
|
|
|
4979
5689
|
border-style: solid;
|
|
4980
5690
|
width: 80px;
|
|
4981
5691
|
}
|
|
5692
|
+
|
|
4982
5693
|
div.help-container td.row-caption {
|
|
4983
5694
|
text-align: left;
|
|
4984
5695
|
font-weight: bold;
|
|
4985
5696
|
width: 120px;
|
|
4986
5697
|
}
|
|
5698
|
+
|
|
4987
5699
|
div.help-container span.glyphicon-hourglass {
|
|
4988
5700
|
color: var(--cancel-button);
|
|
4989
5701
|
}
|
|
5702
|
+
|
|
4990
5703
|
div.help-container p {
|
|
4991
5704
|
font-weight: normal;
|
|
4992
5705
|
}
|
|
5706
|
+
|
|
4993
5707
|
div.help-container img.browserlogo {
|
|
4994
5708
|
height: 28px;
|
|
4995
5709
|
width: auto;
|
|
4996
5710
|
object-fit: scale-down;
|
|
4997
5711
|
margin-right: 8px;
|
|
4998
5712
|
}
|
|
5713
|
+
|
|
4999
5714
|
div.help-container b.vcenter {
|
|
5000
5715
|
position: relative;
|
|
5001
5716
|
top: -8px;
|
|
5002
5717
|
}
|
|
5718
|
+
|
|
5003
5719
|
div.twolist {
|
|
5004
5720
|
-webkit-column-count: 2;
|
|
5005
5721
|
-moz-column-count: 2;
|
|
@@ -5008,27 +5724,33 @@ div.twolist {
|
|
|
5008
5724
|
line-height: 30px;
|
|
5009
5725
|
padding-bottom: 12px;
|
|
5010
5726
|
}
|
|
5727
|
+
|
|
5011
5728
|
span.twoword {
|
|
5012
5729
|
font-weight: bold;
|
|
5013
5730
|
padding-right: 3px;
|
|
5014
5731
|
}
|
|
5732
|
+
|
|
5015
5733
|
span.errword {
|
|
5016
5734
|
text-transform: uppercase;
|
|
5017
5735
|
}
|
|
5736
|
+
|
|
5018
5737
|
div#emoticons-div {
|
|
5019
5738
|
padding-bottom: 24px;
|
|
5020
5739
|
}
|
|
5740
|
+
|
|
5021
5741
|
table#emoticons td {
|
|
5022
5742
|
font-family: 'Courier', sans-serif;
|
|
5023
5743
|
font-size: 20px;
|
|
5024
5744
|
text-align: center;
|
|
5025
5745
|
}
|
|
5746
|
+
|
|
5026
5747
|
img#villi {
|
|
5027
5748
|
float: right;
|
|
5028
5749
|
margin-left: 12px;
|
|
5029
5750
|
margin-top: 18px;
|
|
5030
5751
|
margin-bottom: 12px;
|
|
5031
5752
|
}
|
|
5753
|
+
|
|
5032
5754
|
div.signup-header {
|
|
5033
5755
|
position: absolute;
|
|
5034
5756
|
top: 12px;
|
|
@@ -5159,7 +5881,7 @@ div.signup-header {
|
|
|
5159
5881
|
height: 288px;
|
|
5160
5882
|
/* 8 lines @ 36px each */
|
|
5161
5883
|
}
|
|
5162
|
-
div.chat,
|
|
5884
|
+
div.chat-container,
|
|
5163
5885
|
div.twoletter {
|
|
5164
5886
|
height: 474px;
|
|
5165
5887
|
}
|
|
@@ -5178,6 +5900,7 @@ div.signup-header {
|
|
|
5178
5900
|
}
|
|
5179
5901
|
|
|
5180
5902
|
/* iPhone 11 or larger: scale the UI to appear larger on the screen */
|
|
5903
|
+
|
|
5181
5904
|
@media all and (min-width: 414px) and (max-width: 1023px) and (min-height: 652px) {
|
|
5182
5905
|
div.netskrafl-container {
|
|
5183
5906
|
/*
|
|
@@ -5259,6 +5982,9 @@ div.signup-header {
|
|
|
5259
5982
|
div.rack-left div.recallbtn {
|
|
5260
5983
|
display: none;
|
|
5261
5984
|
}
|
|
5985
|
+
div.force-resign {
|
|
5986
|
+
display: none;
|
|
5987
|
+
}
|
|
5262
5988
|
div.scramblebtn {
|
|
5263
5989
|
left: 376px;
|
|
5264
5990
|
top: 158px;
|
|
@@ -5275,7 +6001,7 @@ div.signup-header {
|
|
|
5275
6001
|
border-width: 0;
|
|
5276
6002
|
color: white;
|
|
5277
6003
|
left: 441px;
|
|
5278
|
-
background-color: var(--
|
|
6004
|
+
background-color: var(--human-color);
|
|
5279
6005
|
}
|
|
5280
6006
|
div.submitpass {
|
|
5281
6007
|
top: 158px;
|
|
@@ -5283,7 +6009,7 @@ div.signup-header {
|
|
|
5283
6009
|
border-width: 0;
|
|
5284
6010
|
color: white;
|
|
5285
6011
|
left: 506px;
|
|
5286
|
-
background-color: var(--
|
|
6012
|
+
background-color: var(--pass-button);
|
|
5287
6013
|
}
|
|
5288
6014
|
div.submitresign {
|
|
5289
6015
|
top: 158px;
|
|
@@ -5369,7 +6095,7 @@ div.signup-header {
|
|
|
5369
6095
|
}
|
|
5370
6096
|
div.games,
|
|
5371
6097
|
div.twoletter,
|
|
5372
|
-
div.chat {
|
|
6098
|
+
div.chat-container {
|
|
5373
6099
|
display: none;
|
|
5374
6100
|
}
|
|
5375
6101
|
div.right-area {
|
|
@@ -5490,13 +6216,18 @@ div.signup-header {
|
|
|
5490
6216
|
div.logo {
|
|
5491
6217
|
display: block;
|
|
5492
6218
|
}
|
|
6219
|
+
div.netskrafl-logo {
|
|
6220
|
+
/* Same size as Málstaður logo */
|
|
6221
|
+
width: 40px;
|
|
6222
|
+
height: 40px;
|
|
6223
|
+
}
|
|
5493
6224
|
div#main-tabs div.header-logo {
|
|
5494
6225
|
display: none;
|
|
5495
6226
|
}
|
|
5496
6227
|
div.circle {
|
|
5497
6228
|
height: 38px;
|
|
5498
6229
|
width: 38px;
|
|
5499
|
-
background-color:
|
|
6230
|
+
background-color: var(--header-hover-color);
|
|
5500
6231
|
border-radius: 50%;
|
|
5501
6232
|
display: inline-block;
|
|
5502
6233
|
position: relative;
|
|
@@ -5559,17 +6290,17 @@ div.signup-header {
|
|
|
5559
6290
|
div.right-area {
|
|
5560
6291
|
display: block;
|
|
5561
6292
|
top: 0;
|
|
5562
|
-
margin-top:
|
|
6293
|
+
margin-top: 6px;
|
|
5563
6294
|
height: 420px;
|
|
5564
6295
|
}
|
|
5565
6296
|
div.games,
|
|
5566
6297
|
div.twoletter,
|
|
5567
|
-
div.chat {
|
|
6298
|
+
div.chat-container {
|
|
5568
6299
|
display: block;
|
|
5569
6300
|
border-radius: 0;
|
|
5570
6301
|
}
|
|
5571
6302
|
div.twoletter,
|
|
5572
|
-
div.chat {
|
|
6303
|
+
div.chat-container {
|
|
5573
6304
|
height: 420px;
|
|
5574
6305
|
}
|
|
5575
6306
|
div.board-area {
|
|
@@ -5743,8 +6474,8 @@ div.signup-header {
|
|
|
5743
6474
|
background-color: var(--cancel-button);
|
|
5744
6475
|
}
|
|
5745
6476
|
.rack td:empty {
|
|
5746
|
-
border-color:
|
|
5747
|
-
background-color:
|
|
6477
|
+
border-color: var(--middle-shadow);
|
|
6478
|
+
background-color: var(--tab-background);
|
|
5748
6479
|
box-shadow: none;
|
|
5749
6480
|
}
|
|
5750
6481
|
div.buttons {
|
|
@@ -5771,7 +6502,7 @@ div.signup-header {
|
|
|
5771
6502
|
line-height: 46px;
|
|
5772
6503
|
top: auto;
|
|
5773
6504
|
bottom: 273px;
|
|
5774
|
-
left:
|
|
6505
|
+
left: 646px;
|
|
5775
6506
|
border-radius: 5px;
|
|
5776
6507
|
}
|
|
5777
6508
|
div.score {
|
|
@@ -5782,9 +6513,9 @@ div.signup-header {
|
|
|
5782
6513
|
line-height: 46px;
|
|
5783
6514
|
top: auto;
|
|
5784
6515
|
bottom: 211px;
|
|
5785
|
-
left:
|
|
6516
|
+
left: 646px;
|
|
5786
6517
|
border-radius: 5px;
|
|
5787
|
-
font-family:
|
|
6518
|
+
font-family: var(--number-font);
|
|
5788
6519
|
}
|
|
5789
6520
|
.standard-button {
|
|
5790
6521
|
position: absolute;
|
|
@@ -5799,28 +6530,6 @@ div.signup-header {
|
|
|
5799
6530
|
border-radius: 5px;
|
|
5800
6531
|
cursor: pointer;
|
|
5801
6532
|
}
|
|
5802
|
-
.submitbutton {
|
|
5803
|
-
position: absolute;
|
|
5804
|
-
top: 528px;
|
|
5805
|
-
text-align: center;
|
|
5806
|
-
font-size: 19px;
|
|
5807
|
-
font-weight: 700;
|
|
5808
|
-
color: white;
|
|
5809
|
-
margin: 0;
|
|
5810
|
-
padding: 6px;
|
|
5811
|
-
padding-top: 9px;
|
|
5812
|
-
border-radius: 5px;
|
|
5813
|
-
cursor: pointer;
|
|
5814
|
-
width: 78px;
|
|
5815
|
-
height: 30px;
|
|
5816
|
-
top: auto;
|
|
5817
|
-
bottom: 136px;
|
|
5818
|
-
left: 546px;
|
|
5819
|
-
background-color: var(--ok-button);
|
|
5820
|
-
font-size: 18px;
|
|
5821
|
-
line-height: 24px;
|
|
5822
|
-
font-weight: normal;
|
|
5823
|
-
}
|
|
5824
6533
|
div.submitnewgame {
|
|
5825
6534
|
position: absolute;
|
|
5826
6535
|
top: 528px;
|
|
@@ -5871,30 +6580,12 @@ div.signup-header {
|
|
|
5871
6580
|
}
|
|
5872
6581
|
div.waitmove {
|
|
5873
6582
|
position: absolute;
|
|
5874
|
-
top: 528px;
|
|
5875
|
-
text-align: center;
|
|
5876
|
-
font-size: 19px;
|
|
5877
|
-
font-weight: 700;
|
|
5878
|
-
color: white;
|
|
5879
|
-
margin: 0;
|
|
5880
|
-
padding: 6px;
|
|
5881
|
-
padding-top: 9px;
|
|
5882
|
-
border-radius: 5px;
|
|
5883
|
-
cursor: pointer;
|
|
5884
|
-
width: 78px;
|
|
5885
|
-
height: 30px;
|
|
5886
6583
|
top: auto;
|
|
5887
6584
|
bottom: 136px;
|
|
5888
6585
|
left: 546px;
|
|
5889
|
-
|
|
5890
|
-
|
|
5891
|
-
line-height: 24px;
|
|
5892
|
-
font-weight: normal;
|
|
6586
|
+
width: 78px;
|
|
6587
|
+
height: 30px;
|
|
5893
6588
|
float: none;
|
|
5894
|
-
border-style: solid;
|
|
5895
|
-
border-width: 1px;
|
|
5896
|
-
border-color: var(--ok-button);
|
|
5897
|
-
background-color: white;
|
|
5898
6589
|
}
|
|
5899
6590
|
div.submitmove {
|
|
5900
6591
|
position: absolute;
|
|
@@ -6051,8 +6742,16 @@ div.signup-header {
|
|
|
6051
6742
|
div.gamestats div.player.humancolor {
|
|
6052
6743
|
color: white;
|
|
6053
6744
|
}
|
|
6745
|
+
div.gamestats div.player.left {
|
|
6746
|
+
border-top-left-radius: 5px;
|
|
6747
|
+
border-bottom-left-radius: 5px;
|
|
6748
|
+
}
|
|
6749
|
+
div.gamestats div.player.right {
|
|
6750
|
+
border-top-right-radius: 5px;
|
|
6751
|
+
border-bottom-right-radius: 5px;
|
|
6752
|
+
}
|
|
6054
6753
|
div.scorewrapper {
|
|
6055
|
-
background-color:
|
|
6754
|
+
background-color: var(--humangrad-color);
|
|
6056
6755
|
min-height: 32px;
|
|
6057
6756
|
}
|
|
6058
6757
|
div.scoreleft {
|
|
@@ -6199,9 +6898,6 @@ div.signup-header {
|
|
|
6199
6898
|
div.message {
|
|
6200
6899
|
display: none;
|
|
6201
6900
|
}
|
|
6202
|
-
div.right-area.with-clock {
|
|
6203
|
-
margin-top: 52px;
|
|
6204
|
-
}
|
|
6205
6901
|
div.right-area.with-clock div.movelist-container {
|
|
6206
6902
|
/* If in a clock game, reduce the movelist height by two lines (2 * 20px) */
|
|
6207
6903
|
height: 380px;
|
|
@@ -6211,7 +6907,7 @@ div.signup-header {
|
|
|
6211
6907
|
height: 380px;
|
|
6212
6908
|
}
|
|
6213
6909
|
div.right-area.with-clock div.twoletter,
|
|
6214
|
-
div.right-area.with-clock div.chat {
|
|
6910
|
+
div.right-area.with-clock div.chat-container {
|
|
6215
6911
|
/* Timed game */
|
|
6216
6912
|
height: 380px;
|
|
6217
6913
|
}
|
|
@@ -6284,6 +6980,7 @@ div.signup-header {
|
|
|
6284
6980
|
border-radius: 0;
|
|
6285
6981
|
}
|
|
6286
6982
|
div.opp-turn {
|
|
6983
|
+
display: block;
|
|
6287
6984
|
position: absolute;
|
|
6288
6985
|
text-align: center;
|
|
6289
6986
|
bottom: 83px;
|
|
@@ -6294,7 +6991,6 @@ div.signup-header {
|
|
|
6294
6991
|
line-height: 24px;
|
|
6295
6992
|
padding: 4px 0 0;
|
|
6296
6993
|
margin: 0;
|
|
6297
|
-
display: block;
|
|
6298
6994
|
}
|
|
6299
6995
|
div#congrats {
|
|
6300
6996
|
position: absolute;
|
|
@@ -6406,8 +7102,8 @@ div.signup-header {
|
|
|
6406
7102
|
margin: 0;
|
|
6407
7103
|
}
|
|
6408
7104
|
input.chat-txt {
|
|
6409
|
-
width:
|
|
6410
|
-
height:
|
|
7105
|
+
width: 234px;
|
|
7106
|
+
height: 32px;
|
|
6411
7107
|
font-size: 15px;
|
|
6412
7108
|
}
|
|
6413
7109
|
div.chat-area {
|
|
@@ -6415,19 +7111,18 @@ div.signup-header {
|
|
|
6415
7111
|
width: 278px;
|
|
6416
7112
|
}
|
|
6417
7113
|
div.modal-close#chat-send {
|
|
6418
|
-
height: 25px;
|
|
6419
7114
|
bottom: 0;
|
|
6420
7115
|
}
|
|
6421
7116
|
span.statsbutton {
|
|
6422
7117
|
display: inline;
|
|
6423
7118
|
text-align: center;
|
|
6424
|
-
background-color:
|
|
7119
|
+
background-color: var(--header-color);
|
|
6425
7120
|
font-size: 16px;
|
|
6426
7121
|
font-weight: 700;
|
|
6427
|
-
color:
|
|
7122
|
+
color: white;
|
|
6428
7123
|
margin-left: 4px;
|
|
6429
7124
|
margin-right: 4px;
|
|
6430
|
-
padding-top:
|
|
7125
|
+
padding-top: 4px;
|
|
6431
7126
|
padding-bottom: 4px;
|
|
6432
7127
|
padding-left: 12px;
|
|
6433
7128
|
padding-right: 12px;
|
|
@@ -6559,10 +7254,12 @@ div.signup-header {
|
|
|
6559
7254
|
max-width: 32px;
|
|
6560
7255
|
}
|
|
6561
7256
|
span.list-s0 {
|
|
7257
|
+
display: inline-block;
|
|
6562
7258
|
width: 40px;
|
|
6563
7259
|
max-width: 40px;
|
|
6564
7260
|
}
|
|
6565
7261
|
span.list-s1 {
|
|
7262
|
+
display: inline-block;
|
|
6566
7263
|
width: 40px;
|
|
6567
7264
|
max-width: 40px;
|
|
6568
7265
|
}
|
|
@@ -6648,10 +7345,6 @@ div.signup-header {
|
|
|
6648
7345
|
height: 48px;
|
|
6649
7346
|
background-size: 48px 48px;
|
|
6650
7347
|
}
|
|
6651
|
-
div.animated-spinner {
|
|
6652
|
-
left: 472px;
|
|
6653
|
-
top: 272px;
|
|
6654
|
-
}
|
|
6655
7348
|
div#promo-form {
|
|
6656
7349
|
left: auto;
|
|
6657
7350
|
top: 60px;
|
|
@@ -6827,7 +7520,7 @@ div.signup-header {
|
|
|
6827
7520
|
line-height: 23px;
|
|
6828
7521
|
}
|
|
6829
7522
|
div.twoletter-area.with-clock {
|
|
6830
|
-
font-size:
|
|
7523
|
+
font-size: 14px;
|
|
6831
7524
|
line-height: 24px;
|
|
6832
7525
|
margin-top: 3px;
|
|
6833
7526
|
}
|