source: DashboardMBooks.css

main
Last change on this file 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: 2.8 KB
Line 
1.home-section {
2 position: relative;
3 background: #e4e9f7;
4 min-height: 100vh;
5 top: 0;
6 left: 78px;
7 width: calc(100% - 78px);
8 transition: all 0.5s ease;
9 padding: 20px;
10}
11
12.sidebar.open ~ .home-section {
13 left: 250px;
14 width: calc(100% - 250px);
15}
16
17.manage-books-container {
18 background: white;
19 padding: 30px;
20 border-radius: 15px;
21 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
22 max-width: 1400px;
23 margin: 20px auto
24}
25
26.controls-section {
27 display: flex;
28 justify-content: space-between;
29 align-items: center;
30 margin-bottom: 30px;
31 flex-wrap: wrap;
32 gap: 15px;
33}
34
35.search-container {
36 display: flex;
37 gap: 10px;
38 flex: 1;
39 max-width: 600px;
40}
41
42.search-input {
43 flex: 1;
44 padding: 10px;
45 border: 1px solid #D4C8B8;
46 border-radius: 8px;
47 font-size: 16px;
48}
49
50.filter-container {
51 display: flex;
52 gap: 10px;
53 align-items: center;
54}
55
56.filter-select {
57 padding: 10px;
58 border: 1px solid #D4C8B8;
59 border-radius: 8px;
60 font-size: 16px;
61}
62
63.books-table {
64 width: 100%;
65 border-collapse: collapse;
66 margin-top: 20px;
67 background: white;
68}
69
70.books-table th,
71.books-table td {
72 padding: 15px;
73 text-align: left;
74 border-bottom: 1px solid #D4C8B8;
75}
76
77.books-table th {
78 background: #2B4B34;
79 color: white;
80 font-weight: 600;
81}
82
83.books-table tr:hover {
84 background: #f5f5f5;
85}
86
87.status-available {
88 color: #28a745;
89 font-weight: 600;
90}
91
92.status-borrowed {
93 color: #dc3545;
94 font-weight: 600;
95}
96
97.action-buttons {
98 display: flex;
99 gap: 10px;
100}
101
102.btn {
103 padding: 8px 16px;
104 border: none;
105 border-radius: 6px;
106 cursor: pointer;
107 transition: all 0.3s ease;
108 font-size: 14px;
109}
110
111.btn-edit {
112 background: #2B4B34;
113 color: white;
114}
115
116.btn-delete {
117 background: #dc3545;
118 color: white;
119}
120
121.btn:hover {
122 opacity: 0.9;
123 transform: translateY(-2px);
124}
125
126.pagination {
127 display: flex;
128 justify-content: center;
129 align-items: center;
130 margin-top: 20px;
131 gap: 10px;
132}
133
134.pagination button {
135 padding: 8px 16px;
136 border: 1px solid #2B4B34;
137 background: white;
138 color: #2B4B34;
139 border-radius: 6px;
140 cursor: pointer;
141 transition: all 0.3s ease;
142}
143
144.pagination button.active {
145 background: #2B4B34;
146 color: white;
147}
148
149.pagination button:hover {
150 background: #4A7759;
151 color: white;
152}
153
154/* Modal styles */
155.modal {
156 display: none;
157 position: fixed;
158 top: 0;
159 left: 0;
160 width: 100%;
161 height: 100%;
162 background: rgba(0, 0, 0, 0.5);
163 z-index: 1000;
164}
165
166.modal-content {
167 position: relative;
168 background: white;
169 margin: 50px auto;
170 padding: 30px;
171 max-width: 600px;
172 border-radius: 15px;
173 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
174}
175
176.close-modal {
177 position: absolute;
178 right: 20px;
179 top: 20px;
180 font-size: 24px;
181 cursor: pointer;
182}
Note: See TracBrowser for help on using the repository browser.