-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (70 loc) · 1.27 KB
/
style.css
File metadata and controls
82 lines (70 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
body {
margin: 0;
font-family: system-ui, sans-serif;
background: #bfe0ff;
}
.top-bar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px;
background: #a7cdf5;
}
.clue-card {
background: white;
margin: 16px;
padding: 16px;
border-radius: 16px;
}
.clue span.indicator { background: #f6c1ff; }
.clue span.fodder { background: #fff1a8; }
.clue span.definition { background: #c8e9ff; }
.answer-row {
display: flex;
justify-content: center;
gap: 6px;
margin-top: 12px;
}
.cell {
width: 40px;
height: 48px;
background: #ffeaa7;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 22px;
}
.cell.active {
background: #e6ccff;
}
.controls {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
button {
padding: 12px 20px;
border-radius: 20px;
border: none;
font-weight: bold;
}
.hint-btn { background: #ffeaa7; }
.check-btn { background: #c8e9ff; }
.modal {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.4);
display: flex;
align-items: center;
justify-content: center;
}
.modal.hidden { display: none; }
.modal-content {
background: white;
padding: 20px;
border-radius: 16px;
width: 80%;
}