-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
131 lines (109 loc) · 2.15 KB
/
Copy pathstyles.css
File metadata and controls
131 lines (109 loc) · 2.15 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
body {
font-family: 'Share Tech', monospace;
}
.word-search-grid {
display: grid;
grid-template-columns: repeat(10, 1fr);
gap: 2px;
}
.word-search-cell {
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #ccc;
cursor: pointer;
user-select: none;
}
.word-search-cell.selected {
background-color: #E9C46A;
color: #264653;
}
.crossword-grid {
display: grid;
grid-template-columns: repeat(10, 30px);
grid-template-rows: repeat(10, 30px);
gap: 1px;
}
.crossword-cell {
border: 1px solid #ccc;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.crossword-cell.filled {
background-color: #2A9D8F;
color: white;
}
.crossword-cell.empty {
background-color: #264653;
}
.crossword-number {
position: absolute;
top: 1px;
left: 1px;
font-size: 8px;
}
.crossword-input {
width: 100%;
height: 100%;
text-align: center;
border: none;
background: transparent;
text-transform: uppercase;
font-weight: bold;
}
.crossword-input:focus {
outline: 2px solid #E76F51;
}
.cipher-container {
font-family: monospace;
letter-spacing: 2px;
}
.book-card {
transition: transform 0.3s ease;
}
.book-card:hover {
transform: translateY(-5px);
}
.badge {
position: relative;
overflow: hidden;
}
.badge::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
}
/* Progress bar animation */
@keyframes progress {
0% { width: 0; }
100% { width: 100%; }
}
.progress-animate {
animation: progress 1s ease-out;
}
.hidden-book {
display: none;
}
#load-more-books {
font-weight: 600;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#load-more-books:hover {
transform: translateY(-2px);
}
/* Add animation for books appearing */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 0.5s ease forwards;
}