source: CSS/Header.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: 4.3 KB
Line 
1* {
2 margin: 0;
3 padding: 0;
4 box-sizing: border-box;
5 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
6 }
7
8 .top-banner {
9 background-color: #23939b;
10 color: white;
11 text-align: center;
12 padding: 8px;
13 font-size: 14px;
14 position: relative;
15 display: flex;
16 align-items: center;
17 justify-content: center;
18 }
19
20 .banner-content {
21 position: relative;
22 overflow: hidden;
23 height: 20px;
24 min-width: 200px;
25 flex: 1;
26 max-width: 800px;
27 }
28
29 .banner-message {
30 position: absolute;
31 width: 100%;
32 opacity: 0;
33 transform: translateY(20px);
34 transition: all 0.5s ease;
35 }
36
37 .banner-message.active {
38 opacity: 1;
39 transform: translateY(0);
40 }
41
42 .banner-button {
43 background: none;
44 border: none;
45 color: white;
46 cursor: pointer;
47 padding: 0 16px;
48 opacity: 0.8;
49 transition: opacity 0.3s;
50 }
51
52 .banner-button:hover {
53 opacity: 1;
54 }
55
56 .banner-arrow {
57 width: 20px;
58 height: 20px;
59 }
60
61 .header {
62 border-bottom: 1px solid #e5e5e5;
63 background: white;
64 }
65
66 .header-main {
67 max-width: 1200px;
68 margin: 0 auto;
69 padding: 16px 24px;
70 display: flex;
71 align-items: center;
72 justify-content: space-between;
73 }
74
75 .logo {
76 font-size: 24px;
77 font-weight: bold;
78 font-family: serif;
79 cursor: pointer;
80 }
81
82 .search-container {
83 flex: 1;
84 max-width: 600px;
85 margin: 0 32px;
86 position: relative;
87 }
88
89 .search-input {
90 width: 100%;
91 padding: 10px 40px 10px 16px;
92 border: 1px solid #ccc;
93 border-radius: 20px;
94 font-size: 14px;
95 }
96
97 .search-icon {
98 position: absolute;
99 right: 12px;
100 top: 50%;
101 transform: translateY(-50%);
102 width: 20px;
103 height: 20px;
104 color: #666;
105 }
106
107 .header-icons {
108 display: flex;
109 gap: 24px;
110 }
111
112 .icon {
113 width: 24px;
114 height: 24px;
115 cursor: pointer;
116 }
117
118 /* Navigation Menu */
119 .nav-menu {
120 display: flex;
121 justify-content: center;
122 align-items: center;
123 gap: 2rem;
124 padding: 1rem 2rem;
125 background: #f8f8f8;
126 border-bottom: 1px solid #e0e0e0;
127 position: relative;
128}
129
130 .nav-item {
131 position: relative;
132 cursor: pointer;
133 }
134
135 .nav-link {
136 color: #333;
137 font-size: 0.9rem;
138 font-weight: 500;
139 padding: 0.5rem 0;
140 }
141
142 /* Dropdown Styling */
143 .dropdown-menu {
144 position: absolute;
145 top: 100%;
146 left: 0;
147 background: white;
148 min-width: 240px;
149 box-shadow: 0 2px 8px rgba(0,0,0,0.1);
150 opacity: 0;
151 visibility: hidden;
152 transform: translateY(-10px);
153 transition: all 0.3s ease;
154 z-index: 100;
155 border-radius: 4px;
156 border: 1px solid #e0e0e0;
157 }
158
159 .nav-item.has-dropdown:hover .dropdown-menu {
160 opacity: 1;
161 visibility: visible;
162 transform: translateY(0);
163 }
164
165 .dropdown-section {
166 padding: 1rem;
167 }
168
169 .dropdown-section h3 {
170 color: #333;
171 font-size: 0.9rem;
172 font-weight: 600;
173 margin-bottom: 0.8rem;
174 padding-bottom: 0.5rem;
175 border-bottom: 1px solid #e0e0e0;
176 }
177
178 .dropdown-content {
179 display: flex;
180 flex-direction: column;
181 gap: 0.5rem;
182 }
183
184 .dropdown-item {
185 color: #666;
186 text-decoration: none;
187 font-size: 0.85rem;
188 padding: 0.4rem 0;
189 transition: color 0.2s ease;
190 }
191
192 .dropdown-item:hover {
193 color: #1a75ff;
194 }
195
196 .nav-link:hover {
197 color: #1a75ff;
198 }
199
200 .nav-item.active .nav-link {
201 color: #1a75ff;
202 }
203
204 @media (max-width: 768px) {
205 .nav-menu {
206 flex-direction: column;
207 gap: 0;
208 }
209
210 .nav-item {
211 width: 100%;
212 padding: 0.5rem 0;
213 }
214
215 .dropdown-menu {
216 position: static;
217 box-shadow: none;
218 border: none;
219 opacity: 1;
220 visibility: visible;
221 transform: none;
222 display: none;
223 }
224
225 .nav-item.has-dropdown.active .dropdown-menu {
226 display: block;
227 }
228
229 .dropdown-section {
230 padding: 0.5rem 1rem;
231 }
232 }
233
234 .menu-button {
235 background-color: #23939b;
236 color: white;
237 font-size: 16px;
238 padding: 10px 20px;
239 border: none;
240 border-radius: 5px;
241 cursor: pointer;
242 transition: background-color 0.3s ease, transform 0.2s ease;
243 text-align: left;
244 }
245
246 .menu-button:hover {
247 background-color: #1c7c7a;
248 transform: translateY(-1px);
249 }
250
251 .menu-button:active {
252 background-color: #1a7475;
253 transform: translateY(0);
254 }
Note: See TracBrowser for help on using the repository browser.