source: CSS/BookView.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: 3.4 KB
Line 
1* {
2 margin: 0;
3 padding: 0;
4 box-sizing: border-box;
5 font-family: Arial, sans-serif;
6}
7
8body {
9 background-color: #f5f5f5;
10 color: #333;
11 line-height: 1.6;
12}
13
14.container {
15 max-width: 1200px;
16 margin: 0 auto;
17 padding: 20px;
18}
19
20.breadcrumb {
21 margin-bottom: 24px;
22 color: #666;
23 font-size: 14px;
24}
25
26.breadcrumb a {
27 color: #2c5282;
28 text-decoration: none;
29}
30
31.breadcrumb a:hover {
32 text-decoration: underline;
33}
34
35.book-details {
36 display: grid;
37 grid-template-columns: 300px 1fr;
38 gap: 30px;
39 background: white;
40 padding: 30px;
41 border-radius: 8px;
42 box-shadow: 0 2px 4px rgba(0,0,0,0.1);
43}
44
45.book-image {
46 position: relative;
47 width: 100%;
48 height: 450px;
49 overflow: hidden;
50 border-radius: 4px;
51 box-shadow: 0 4px 8px rgba(0,0,0,0.1);
52 display: flex;
53 justify-content: center;
54 align-items: center;
55}
56
57.book-cover {
58 width: 100%;
59 height: 450px;
60 object-fit: cover;
61 border-radius: 4px;
62 box-shadow: 0 4px 8px rgba(0,0,0,0.1);
63}
64
65.book-image:hover .book-cover {
66 transform: scale(1.05); /* Slight zoom effect */
67}
68
69.book-info h1 {
70 font-size: 28px;
71 margin-bottom: 10px;
72 color: #2c3e50;
73}
74
75.book-meta {
76 color: #666;
77 margin-bottom: 20px;
78}
79
80.availability {
81 display: inline-block;
82 padding: 8px 16px;
83 border-radius: 4px;
84 font-weight: bold;
85 margin: 10px 0;
86}
87
88.available {
89 background-color: #e8f5e9;
90 color: #2e7d32;
91}
92
93.unavailable {
94 background-color: #ffebee;
95 color: #c62828;
96}
97
98.btn {
99 padding: 10px 20px;
100 border: none;
101 border-radius: 4px;
102 cursor: pointer;
103 font-weight: bold;
104 transition: background-color 0.3s;
105}
106
107.btn-primary {
108 background-color: #1976d2;
109 color: white;
110}
111
112.btn-primary:hover {
113 background-color: #1565c0;
114}
115
116.btn-secondary {
117 background-color: #f5f5f5;
118 color: #333;
119 border: 1px solid #ddd;
120}
121
122.btn-secondary:hover {
123 background-color: #eeeeee;
124}
125
126.book-description {
127 margin: 20px 0;
128 line-height: 1.8;
129}
130
131.section-title {
132 font-size: 24px;
133 margin: 30px 0 20px;
134 color: #2c3e50;
135}
136
137.author-section {
138 background: white;
139 padding: 30px;
140 margin-top: 30px;
141 border-radius: 8px;
142 box-shadow: 0 2px 4px rgba(0,0,0,0.1);
143}
144
145.author-info {
146 display: grid;
147 grid-template-columns: 120px 1fr;
148 gap: 20px;
149}
150
151.author-photo {
152 width: 120px;
153 height: 120px;
154 border-radius: 50%;
155 object-fit: cover;
156}
157
158.recommendations {
159 margin-top: 30px;
160}
161
162.book-grid {
163 display: grid;
164 grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
165 gap: 20px;
166 margin-top: 20px;
167}
168
169.book-card {
170 background: white;
171 padding: 15px;
172 border-radius: 8px;
173 box-shadow: 0 2px 4px rgba(0,0,0,0.1);
174 transition: transform 0.3s;
175 flex: 0 0 180px;
176 display: flex;
177 flex-direction: column;
178 gap: 0.5rem;
179}
180
181.book-card:hover {
182 transform: translateY(-12px);
183}
184
185.book-card img {
186 width: 100%;
187 height: 250px;
188 object-fit: cover;
189 border-radius: 4px;
190 margin-bottom: 10px;
191}
192
193.book-card h3 {
194 font-size: 16px;
195 margin-bottom: 5px;
196}
197
198.book-card p {
199 font-size: 14px;
200 color: #666;
201}
202
203@media (max-width: 768px) {
204 .book-details {
205 grid-template-columns: 1fr;
206 }
207
208 .book-cover {
209 height: 400px;
210 }
211
212 .author-info {
213 grid-template-columns: 1fr;
214 text-align: center;
215 }
216
217 .author-photo {
218 margin: 0 auto;
219 }
220}
Note: See TracBrowser for help on using the repository browser.