source: CSS/Admin.css@ 75f74d9

main
Last change on this file since 75f74d9 was 75f74d9, checked in by Vlado 222039 <vlado.popovski@…>, 6 weeks ago

Initial commit: Adding Book Tracker code

  • Property mode set to 100644
File size: 12.7 KB
Line 
1/* Barnes & Noble inspired colors and styling */
2:root {
3 --primary-color: #2B4B34; /* Dark green */
4 --secondary-color: #8B6C42; /* Warm brown */
5 --accent-color: #D4C8B8; /* Cream */
6 --text-light: #fff;
7 --text-dark: #333;
8 --hover-color: #4A7759;
9 --submenu-bg: #1d392a;
10}
11
12* {
13 margin: 0;
14 padding: 0;
15 box-sizing: border-box;
16 /*font-family: "Georgia", serif; /* More bookish font */
17 font-family: 'EB Garamond'; font-size: 22px;
18}
19
20body {
21 transition: all 0.3s ease;
22}
23
24.sidebar {
25 position: fixed;
26 left: 0;
27 top: 0;
28 height: 100%;
29 width: 78px;
30 background: var(--primary-color);
31 padding: 6px 14px;
32 z-index: 99;
33 transition: all 0.5s ease;
34}
35
36.sidebar.open {
37 width: 250px;
38}
39
40.sidebar .logo-details {
41 height: 60px;
42 display: flex;
43 align-items: center;
44 justify-content: space-between;
45 position: relative;
46}
47
48.sidebar .logo-details .logo_name {
49 color: var(--text-light);
50 font-size: 24px;
51 font-weight: 600;
52 opacity: 0;
53 transition: all 0.5s ease;
54}
55
56.sidebar.open .logo-details .logo_name {
57 opacity: 1;
58}
59
60.sidebar .logo-details #btn {
61 position: absolute;
62 top: 50%;
63 right: 0;
64 transform: translateY(-50%);
65 font-size: 22px;
66 text-align: center;
67 cursor: pointer;
68 transition: all 0.5s ease;
69}
70
71.sidebar i {
72 color: var(--text-light);
73 height: 60px;
74 min-width: 50px;
75 font-size: 28px;
76 text-align: center;
77 line-height: 60px;
78}
79
80.sidebar .nav-list {
81 margin-top: 20px;
82 height: 100%;
83}
84
85.sidebar li {
86 position: relative;
87 margin: 8px 0;
88 list-style: none;
89}
90
91.sidebar li a {
92 display: flex;
93 height: 100%;
94 width: 100%;
95 border-radius: 12px;
96 align-items: center;
97 text-decoration: none;
98 transition: all 0.4s ease;
99}
100
101.sidebar li a:hover {
102 background: var(--hover-color);
103}
104
105.sidebar li a .links_name {
106 color: var(--text-light);
107 font-size: 15px;
108 font-weight: 400;
109 white-space: nowrap;
110 opacity: 0;
111 pointer-events: none;
112 transition: 0.4s;
113}
114
115.sidebar.open li a .links_name {
116 opacity: 1;
117 pointer-events: auto;
118}
119
120/* Submenu styling */
121.submenu {
122 display: none;
123 padding-left: 20px;
124 background: var(--submenu-bg);
125 border-radius: 0 0 12px 12px;
126 overflow: hidden;
127}
128
129.submenu.active {
130 display: block;
131}
132
133.sidebar.open .submenu {
134 padding: 6px 6px 14px 14px;
135 margin-top: 5px;
136}
137
138.submenu li {
139 margin: 10px 0;
140}
141
142.submenu li a {
143 padding: 8px 15px;
144 color: var(--text-light);
145 font-size: 14px;
146 border-radius: 8px;
147 transition: all 0.3s ease;
148}
149
150.submenu li a:hover {
151 background: var(--hover-color);
152 padding-left: 20px;
153}
154
155/* Light mode styles */
156body.light-mode .sidebar {
157 background: var(--accent-color);
158}
159
160body.light-mode .sidebar li a {
161 color: var(--text-dark);
162}
163
164body.light-mode .submenu {
165 background: #c4b8a8;
166}
167
168body.light-mode .sidebar li a:hover {
169 background: var(--secondary-color);
170 color: var(--text-light);
171}
172
173.manage-users-container {
174 background: white;
175 padding: 30px;
176 border-radius: 15px;
177 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
178 max-width: 1400px;
179 margin: 20px auto
180}
181
182.controls-section {
183 display: flex;
184 justify-content: space-between;
185 align-items: center;
186 margin-bottom: 30px;
187 flex-wrap: wrap;
188 gap: 15px;
189}
190
191
192.users-table {
193 width: 100%;
194 border-collapse: collapse;
195 margin-top: 20px;
196 background: white;
197}
198
199.users-table th,
200.users-table td {
201 padding: 15px;
202 text-align: left;
203 border-bottom: 1px solid #D4C8B8;
204}
205
206.users-table th {
207 background: #2B4B34;
208 color: white;
209 font-weight: 600;
210}
211
212.users-table tr:hover {
213 background: #f5f5f5;
214}
215
216.action-buttons {
217 display: flex;
218 gap: 10px;
219}
220
221.btn {
222 padding: 8px 16px;
223 border: none;
224 border-radius: 6px;
225 cursor: pointer;
226 transition: all 0.3s ease;
227 font-size: 14px;
228}
229
230.btn-edit {
231 background: #2B4B34;
232 color: white;
233}
234
235.btn-delete {
236 background: #dc3545;
237 color: white;
238}
239
240.btn:hover {
241 opacity: 0.9;
242 transform: translateY(-2px);
243}
244
245
246
247/* Loan */
248
249.manage-loans-container {
250 background: white;
251 padding: 30px;
252 border-radius: 15px;
253 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
254 max-width: 1400px;
255 margin: 20px auto
256}
257
258.loans-table {
259 width: 100%;
260 border-collapse: collapse;
261 margin-top: 20px;
262 background: white;
263}
264
265.loans-table th,
266.loans-table td {
267 padding: 15px;
268 text-align: left;
269 border-bottom: 1px solid #D4C8B8;
270}
271
272.loans-table th {
273 background: #2B4B34;
274 color: white;
275 font-weight: 600;
276}
277
278.loans-table tr:hover {
279 background: #f5f5f5;
280}
281
282/* FINES */
283.manage-fines-container {
284 background: white;
285 padding: 30px;
286 border-radius: 15px;
287 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
288 max-width: 1400px;
289 margin: 20px auto
290}
291
292.fines-table {
293 width: 100%;
294 border-collapse: collapse;
295 margin-top: 20px;
296 background: white;
297}
298
299.fines-table th,
300.fines-table td {
301 padding: 15px;
302 text-align: left;
303 border-bottom: 1px solid #D4C8B8;
304}
305
306.fines-table th {
307 background: #2B4B34;
308 color: white;
309 font-weight: 600;
310}
311
312.fines-table tr:hover {
313 background: #f5f5f5;
314}
315
316.status-paid {
317 color: #28a745;
318 font-weight: bold;
319}
320
321.status-unpaid {
322 color: #dc3545;
323 font-weight: bold;
324}
325
326
327/* Dashboard */
328.dashboard-container {
329 display: flex;
330 justify-content: center;
331 align-items: center;
332 min-height: 100vh;
333 padding: 20px;
334}
335
336.cards-container {
337 display: grid;
338 grid-template-columns: repeat(2, 1fr);
339 gap: 30px;
340 max-width: 1200px;
341 width: 100%;
342 padding: 20px;
343}
344
345.card {
346 background: white;
347 padding: 30px;
348 border-radius: 15px;
349 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
350 transition: transform 0.3s ease, box-shadow 0.3s ease;
351 position: relative;
352 overflow: hidden;
353}
354
355.card:hover {
356 transform: translateY(-5px);
357 box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
358}
359
360.card-icon {
361 position: absolute;
362 right: 20px;
363 top: 20px;
364 font-size: 48px;
365 opacity: 0.1;
366 color: #2B4B34;
367}
368
369.card-title {
370 color: #666;
371 font-size: 18px;
372 margin-bottom: 15px;
373 font-weight: 500;
374}
375
376.card-value {
377 color: #2B4B34;
378 font-size: 36px;
379 font-weight: 600;
380 margin-bottom: 10px;
381}
382
383/* Card specific colors */
384.card.books {
385 border-top: 4px solid #2B4B34;
386}
387
388.card.borrowed {
389 border-top: 4px solid #8B6C42;
390}
391
392.card.users {
393 border-top: 4px solid #4A7759;
394}
395
396.card.fines {
397 border-top: 4px solid #dc3545;
398}
399
400/* Responsive Design */
401@media (max-width: 768px) {
402 .cards-container {
403 grid-template-columns: 1fr;
404 padding: 10px;
405 }
406
407 .card {
408 padding: 20px;
409 }
410
411 .card-value {
412 font-size: 28px;
413 }
414}
415
416/* ADD BOOK */
417.add-book-container {
418 background: white;
419 padding: 30px;
420 border-radius: 15px;
421 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
422 max-width: 800px;
423 margin: 20px auto;
424}
425
426.form-header {
427 color: #2B4B34;
428 margin-bottom: 30px;
429 padding-bottom: 15px;
430 border-bottom: 2px solid #D4C8B8;
431}
432
433.form-group {
434 margin-bottom: 20px;
435}
436
437.form-group label {
438 display: block;
439 margin-bottom: 8px;
440 color: #333;
441 font-weight: 600;
442}
443
444.form-group input,
445.form-group textarea,
446.form-group select {
447 width: 100%;
448 padding: 10px;
449 border: 1px solid #D4C8B8;
450 border-radius: 8px;
451 font-size: 16px;
452 transition: all 0.3s ease;
453}
454
455.form-group input:focus,
456.form-group textarea:focus,
457.form-group select:focus {
458 outline: none;
459 border-color: #2B4B34;
460 box-shadow: 0 0 5px rgba(43, 75, 52, 0.2);
461}
462
463.form-row {
464 display: flex;
465 gap: 20px;
466 margin-bottom: 20px;
467}
468
469.form-row .form-group {
470 flex: 1;
471}
472
473.btn-container {
474 display: flex;
475 gap: 15px;
476 justify-content: flex-end;
477 margin-top: 30px;
478}
479
480.btn {
481 padding: 12px 24px;
482 border: none;
483 border-radius: 8px;
484 font-size: 16px;
485 cursor: pointer;
486 transition: all 0.3s ease;
487}
488
489.btn-primary {
490 background: #2B4B34;
491 color: white;
492}
493
494.btn-secondary {
495 background: #D4C8B8;
496 color: #333;
497}
498
499.btn:hover {
500 transform: translateY(-2px);
501 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
502}
503
504.btn-primary:hover {
505 background: #4A7759;
506}
507
508.btn-secondary:hover {
509 background: #c4b8a8;
510}
511
512.error-message {
513 color: #dc3545;
514 font-size: 14px;
515 margin-top: 5px;
516 display: none;
517}
518
519/* File upload styling */
520.file-upload {
521 position: relative;
522 display: inline-block;
523 width: 100%;
524}
525
526.file-upload-label {
527 display: block;
528 padding: 10px;
529 background: #f8f9fa;
530 border: 2px dashed #D4C8B8;
531 border-radius: 8px;
532 text-align: center;
533 cursor: pointer;
534 transition: all 0.3s ease;
535}
536
537.file-upload-label:hover {
538 border-color: #2B4B34;
539 background: #f0f0f0;
540}
541
542.file-upload input[type="file"] {
543 display: none;
544}
545
546
547.copy-entry {
548 position: relative;
549 padding-right: 50px; /* Make space for the remove button */
550 align-items: flex-end; /* Align items at the bottom to match with button */
551}
552
553.remove-copy {
554 position: absolute;
555 right: 0;
556 bottom: 20px; /* Align with the bottom of the form inputs */
557 padding: 8px 12px !important;
558 background: #dc3545 !important; /* Red color for delete action */
559 color: white !important;
560 border-radius: 6px !important;
561 font-size: 14px !important;
562 min-width: 40px;
563 display: flex;
564 align-items: center;
565 justify-content: center;
566}
567
568.remove-copy:hover {
569 background: #c82333 !important;
570 transform: translateY(-2px);
571 box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
572}
573
574/* Add spacing between copy entries */
575.copy-entry + .copy-entry {
576 margin-top: 15px;
577 padding-top: 15px;
578 border-top: 1px solid #D4C8B8;
579}
580
581/* Style the "Add Another Condition" button */
582#copiesSection > button {
583 margin-top: 20px;
584 background: #4A7759 !important;
585 color: white !important;
586}
587
588#copiesSection > button:hover {
589 background: #2B4B34 !important;
590}
591
592
593/* ISSUE FINE */
594
595/* Common styles for form */
596.issue-fine-container {
597 background: white;
598 padding: 30px;
599 border-radius: 15px;
600 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
601 max-width: 800px;
602 margin: 20px auto;
603}
604
605/* Adjust input fields in the form */
606.issue-fine-container input,
607.issue-fine-container select {
608 width: 100%;
609 padding: 12px 20px;
610 margin-bottom: 15px;
611 border: 1px solid #D4C8B8;
612 border-radius: 8px;
613 font-size: 16px;
614}
615
616/* Focus effect for form fields */
617.issue-fine-container input:focus,
618.issue-fine-container select:focus {
619 outline: none;
620 border-color: #2B4B34;
621 box-shadow: 0 0 5px rgba(43, 75, 52, 0.2);
622}
623
624/* Error message styling */
625.issue-fine-container .error-message {
626 color: #dc3545;
627 font-size: 14px;
628 margin-top: 5px;
629 display: none;
630}
631
632
633/* MODAL */
634.modal {
635 display: none;
636 position: fixed;
637 top: 0;
638 left: 0;
639 width: 100%;
640 height: 100%;
641 background: rgba(0,0,0,0.5);
642 z-index: 1000;
643}
644
645.modal-content {
646 position: relative;
647 background: white;
648 margin: 15% auto;
649 padding: 20px;
650 /*width: 300px;*/
651 border-radius: 5px;
652}
653
654.close-modal {
655 position: absolute;
656 right: 10px;
657 top: 10px;
658 cursor: pointer;
659 font-size: 20px;
660}
661
662.status-select {
663 width: 100%;
664 padding: 8px;
665 margin: 10px 0;
666 border-radius: 4px;
667 border: 1px solid #ddd;
668}
669
670.button-group {
671 display: flex;
672 justify-content: flex-end;
673 gap: 10px;
674 margin-top: 20px;
675}
676
677
678/* AUTHOR */
679.manage-authors-container {
680 background: white;
681 padding: 30px;
682 border-radius: 15px;
683 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
684 max-width: 1400px;
685 margin: 20px auto
686}
687
688.authors-table {
689 width: 100%;
690 border-collapse: collapse;
691 margin-top: 20px;
692 background: white;
693}
694
695.authors-table th,
696.authors-table td {
697 padding: 15px;
698 text-align: left;
699 border-bottom: 1px solid #D4C8B8;
700}
701
702.authors-table th {
703 background: #2B4B34;
704 color: white;
705 font-weight: 600;
706}
707
708.authors-table tr:hover {
709 background: #f5f5f5;
710}
711
712/* AUTHOR */
713.modal-content {
714 width: 600px; /* Increased width for more space */
715 max-height: 80vh;
716 overflow-y: auto;
717}
718
719.form-row {
720 display: flex;
721 gap: 20px;
722 margin-bottom: 15px;
723}
724
725.form-row .form-group {
726 flex: 1;
727}
728
729.form-group textarea {
730 width: 100%;
731 padding: 8px;
732 border: 1px solid #ddd;
733 border-radius: 4px;
734 resize: vertical;
735}
736
737.file-upload {
738 position: relative;
739 display: inline-block;
740}
741
742.file-upload-label {
743 display: inline-block;
744 padding: 8px 12px;
745 background: #f0f0f0;
746 border: 1px solid #ddd;
747 border-radius: 4px;
748 cursor: pointer;
749}
750
751.file-upload input[type="file"] {
752 display: none;
753}
754
755#currentImage {
756 margin-top: 10px;
757 text-align: center;
758}
759
760#currentImage img {
761 border: 1px solid #ddd;
762 padding: 5px;
763 border-radius: 4px;
764}
Note: See TracBrowser for help on using the repository browser.