-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
228 lines (192 loc) · 4.38 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/* Custom Styles */
body {
background-color: #f8f9fa;
color: #212529;
transition: background-color 0.3s, color 0.3s;
}
header {
position: relative;
}
header h1 {
font-size: 3rem;
font-weight: bold;
}
header p {
font-size: 1.2rem;
color: #6c757d;
}
/* Style for the "Submit a New Group" button in the header */
header .btn.btn-primary.position-absolute {
/* Customize the button appearance if needed */
}
/* Style for the "View Source" button */
header .btn.btn-dark.position-absolute {
/* Customize the button appearance if needed */
}
/* Style for the search bar */
#searchBar {
border: 1px solid #ced4da;
border-radius: 0.5rem;
padding: 0.5rem;
font-size: 1rem;
margin-bottom: 1rem;
}
/* Prevent word breaking in table cells */
table td,
table th {
word-break: keep-all;
hyphens: none;
}
/* Specific styles for the "Categories" column */
.categories-column {
white-space: normal; /* Allows wrapping at spaces */
word-break: keep-all; /* Prevents breaking within words */
}
/* Updated styling for fidgets feature */
.fidgets-container {
padding: 1rem;
background-color: #ffffff;
border: 1px solid #dee2e6;
border-radius: 0.5rem;
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1rem;
}
.fidget-item {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
max-width: 200px;
padding: 0.5rem;
border: 1px solid #dee2e6;
border-radius: 0.5rem;
background-color: #f8f9fa;
}
.fidget-item img {
border-radius: 5px;
width: 100px;
height: 100px;
object-fit: cover;
margin-bottom: 0.5rem;
}
.fidget-item p {
margin: 0;
font-size: 0.9rem;
color: #6c757d;
}
/* Existing styles */
.form-check-label {
cursor: pointer;
}
.filter-checkbox {
margin-right: 0.5rem;
}
#resetFilters {
align-self: center;
}
/* Sort button styles */
#sortByDate {
margin-top: 1rem;
}
/* Updated image styling */
table img {
border-radius: 5px;
width: 100px;
height: 100px;
object-fit: cover; /* Ensures the image covers the area without distortion */
}
.table td,
.table th {
vertical-align: middle;
}
/* Adjust the header to prevent overlapping on mobile */
header .btn.position-absolute {
z-index: 1;
}
/* Responsive Adjustments */
@media (max-width: 576px) {
body {
padding: 0 1rem;
}
header h1 {
font-size: 2rem;
}
header p {
font-size: 1rem;
}
/* Adjust the position of buttons on smaller screens */
header .btn.position-absolute {
position: relative !important;
margin: 0.5rem auto;
display: block;
text-align: center;
width: auto;
}
/* Center the header content */
.d-flex.justify-content-center {
flex-direction: column;
align-items: center;
text-align: center;
}
/* Ensure checkboxes maintain their styling */
.form-check {
display: flex;
align-items: center;
margin-bottom: 0.5rem;
}
.form-check-input {
margin-right: 0.5rem;
}
.form-check-label {
width: auto;
}
#resetFilters {
width: 100%;
margin-top: 1rem;
}
#sortByDate {
width: 100%;
margin-top: 0.5rem;
}
.table-responsive {
overflow-x: auto;
}
/* Adjust table */
table {
width: 100%;
table-layout: auto;
}
table th,
table td {
white-space: nowrap; /* Prevent text from wrapping */
word-break: keep-all; /* Prevent words from breaking */
padding: 0.5rem;
font-size: 0.9rem;
text-align: left;
vertical-align: middle;
}
/* Allow wrapping in specific columns if needed */
table td:nth-child(3), /* Description column */
table td:nth-child(5) /* Categories column */ {
white-space: normal; /* Allow wrapping in these columns */
}
/* Updated image size in table */
table img {
width: 80px;
height: 80px;
object-fit: cover;
}
/* Adjust button sizes */
.btn {
font-size: 0.9rem;
padding: 0.4rem 0.75rem;
white-space: nowrap; /* Prevent text from wrapping in buttons */
}
/* Adjust the width of the "Link" column to fit the button */
table td:nth-child(4) {
width: 1%;
white-space: nowrap;
}
}