1 | * {
|
---|
2 | margin: 0;
|
---|
3 | padding: 0;
|
---|
4 | box-sizing: border-box;
|
---|
5 | }
|
---|
6 |
|
---|
7 |
|
---|
8 | header {
|
---|
9 | background-color: white;
|
---|
10 | box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
|
---|
11 | padding: 60px 40px;
|
---|
12 | }
|
---|
13 | .menu{
|
---|
14 | display: flex;
|
---|
15 | align-items: center;
|
---|
16 | width:100%;
|
---|
17 | }
|
---|
18 |
|
---|
19 | .logo{
|
---|
20 | display: flex;
|
---|
21 | align-items: center;
|
---|
22 | margin-right: 30px;
|
---|
23 | }
|
---|
24 | .logo img {
|
---|
25 | height: 80px;
|
---|
26 | }
|
---|
27 |
|
---|
28 | .logo span {
|
---|
29 | font-family: "Dancing Script", cursive;
|
---|
30 | font-optical-sizing: auto;
|
---|
31 | font-weight: 800;
|
---|
32 | font-style: normal;
|
---|
33 | font-size: 20px;
|
---|
34 | color: #E40046;
|
---|
35 | }
|
---|
36 |
|
---|
37 | nav{
|
---|
38 | width:100%;
|
---|
39 | flex:1;
|
---|
40 | font-family: "Kumbh Sans", sans-serif;
|
---|
41 | font-weight: 700;
|
---|
42 | font-style: normal;
|
---|
43 | font-size: 25px;
|
---|
44 | }
|
---|
45 | .title, .footer-left span{
|
---|
46 | font-family: "Caveat", cursive;
|
---|
47 | font-optical-sizing: auto;
|
---|
48 | font-weight: 500;
|
---|
49 | font-style: normal;
|
---|
50 | font-size: 50px;
|
---|
51 | color: #454545;
|
---|
52 | position: relative;
|
---|
53 | z-index: 2;
|
---|
54 | right: -60px;
|
---|
55 | }
|
---|
56 |
|
---|
57 | nav ul {
|
---|
58 | display:flex;
|
---|
59 | flex-wrap: wrap;
|
---|
60 | justify-content: space-evenly;
|
---|
61 | list-style: none;
|
---|
62 | }
|
---|
63 | .icon-down{
|
---|
64 | height:20px;
|
---|
65 | }
|
---|
66 |
|
---|
67 | .dropdown-content {
|
---|
68 | display: none; /* Hide dropdown by default */
|
---|
69 | position: absolute; /* Position relative to the list item */
|
---|
70 | left: 0;
|
---|
71 | top: 100%; /* Position below the list item */
|
---|
72 | background-color: white; /* Background color of the dropdown */
|
---|
73 | border: 1px solid #ddd; /* Border of the dropdown */
|
---|
74 | padding: 10px; /* Padding inside the dropdown */
|
---|
75 | box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional shadow for dropdown */
|
---|
76 | width: 100%; /* Full width of the list item */
|
---|
77 | }
|
---|
78 | .icon-search{
|
---|
79 | height:40px;
|
---|
80 | }
|
---|
81 |
|
---|
82 | form > input{
|
---|
83 | height:40px;
|
---|
84 | width: 150px;
|
---|
85 | }
|
---|
86 | form{
|
---|
87 | display:flex;
|
---|
88 | justify-content: center;
|
---|
89 | }
|
---|
90 | ::placeholder {
|
---|
91 | font-size: 17px;
|
---|
92 | padding-left: 5px;
|
---|
93 | }
|
---|
94 | .main-content{
|
---|
95 | display: grid;
|
---|
96 | grid-template-columns: 3fr 1fr 3fr;
|
---|
97 | align-items: center;
|
---|
98 | justify-content: center;
|
---|
99 | height: 350px;
|
---|
100 | /*background-color: #F3F0E7;*/
|
---|
101 | background-color: #F7F7F5;
|
---|
102 | }
|
---|
103 | .main-image{
|
---|
104 | height: 250px;
|
---|
105 | position: relative;
|
---|
106 | z-index: 1;
|
---|
107 | }
|
---|
108 | .items-register{
|
---|
109 | font-family: "Kumbh Sans", sans-serif;
|
---|
110 | }
|
---|
111 | .items-register p{
|
---|
112 | text-transform: uppercase;
|
---|
113 | font-weight: bold;
|
---|
114 | font-size: 18px ;
|
---|
115 | padding: 10px;
|
---|
116 | text-align: center;
|
---|
117 | }
|
---|
118 |
|
---|
119 | .items-register{
|
---|
120 | display:flex;
|
---|
121 | flex-direction: column;
|
---|
122 | align-items: center;
|
---|
123 | /*background-color: #F3F0E7;*/
|
---|
124 | }
|
---|
125 |
|
---|
126 | .form-imp{
|
---|
127 | display: flex;
|
---|
128 | flex-direction: column;
|
---|
129 | align-items: center;
|
---|
130 | width: auto;
|
---|
131 | padding: 10px;
|
---|
132 | }
|
---|
133 | input , button {
|
---|
134 | border-radius: 5px; /* Adjust the value to make the corners more or less rounded */
|
---|
135 | padding: 7px; /* Optional: adds padding inside the input */
|
---|
136 | border: 1px solid #9D9D9D; /* Optional: adds a border around the input */
|
---|
137 | }
|
---|
138 | button{
|
---|
139 | background-color: #10B981;
|
---|
140 | color:white;
|
---|
141 | }
|
---|
142 | .white-part{
|
---|
143 | background-color: white;
|
---|
144 | width: 415px;
|
---|
145 | border-radius: 5px;
|
---|
146 | padding: 7px;
|
---|
147 | }
|
---|
148 | .split-title{
|
---|
149 | display: block;
|
---|
150 | padding-left: 80px;
|
---|
151 | }
|
---|
152 | .part-1{
|
---|
153 | display: flex;
|
---|
154 | justify-content: center;
|
---|
155 | align-items: center;
|
---|
156 | height: 500px;
|
---|
157 | gap: 80px;
|
---|
158 | }
|
---|
159 |
|
---|
160 | .part1-text{
|
---|
161 | font-family: "Caveat", cursive;
|
---|
162 | font-optical-sizing: auto;
|
---|
163 | font-weight: 500;
|
---|
164 | font-style: normal;
|
---|
165 | font-size: 23px;
|
---|
166 | width: 500px;
|
---|
167 | }
|
---|
168 | .puzzle{
|
---|
169 | height: 300px;
|
---|
170 | }
|
---|
171 | .part1-text *{
|
---|
172 | padding: 10px;
|
---|
173 | }
|
---|
174 | .part2{
|
---|
175 | display: flex;
|
---|
176 | justify-content: space-between;
|
---|
177 | gap: 20px;
|
---|
178 | height: 550px;
|
---|
179 | align-items: center;
|
---|
180 | background-color: #F7F7F5;
|
---|
181 | /*background-color: #F3F0E7;*/
|
---|
182 | }
|
---|
183 | .part2 > div{
|
---|
184 | flex:1;
|
---|
185 | display: flex;
|
---|
186 | justify-content: center;
|
---|
187 | }
|
---|
188 | .part2 > div:first-child {
|
---|
189 | justify-content: flex-end; /* Align the content to the right */
|
---|
190 | }
|
---|
191 |
|
---|
192 | .part2-content{
|
---|
193 | width: 500px;
|
---|
194 | font-family: "Kumbh Sans", sans-serif;
|
---|
195 | }
|
---|
196 | .slika-chicho, .part2-content {
|
---|
197 | height:350px;
|
---|
198 | border-radius: 5px;
|
---|
199 | }
|
---|
200 | .head1, .head2{
|
---|
201 | font-family: "Kumbh Sans", sans-serif;
|
---|
202 | font-weight: bold;
|
---|
203 | display: block;
|
---|
204 | }
|
---|
205 |
|
---|
206 | .head2{
|
---|
207 | font-size: 19px;
|
---|
208 | }
|
---|
209 | .head1{
|
---|
210 | font-size: 25px;
|
---|
211 | padding-bottom: 20px;
|
---|
212 | }
|
---|
213 | footer{
|
---|
214 | background-color: rgba(206, 228, 237, 0.97);
|
---|
215 | }
|
---|
216 | .text-button{
|
---|
217 | background-color: transparent;
|
---|
218 | color: darkgreen;
|
---|
219 | border: 2px solid darkgreen; /* Set the border color and make it bold */
|
---|
220 | border-radius: 12px; /* Make the borders rounded */
|
---|
221 | font-weight: bold; /* Make the text bold */
|
---|
222 | padding: 10px 20px; /* Add some padding for better appearance */
|
---|
223 | cursor: pointer; /* Change the cursor to a pointer when hovered */
|
---|
224 | font-family: "Kumbh Sans", sans-serif; /* Match the font family */
|
---|
225 | font-size: 16px; /* Adjust font size as needed */
|
---|
226 | }
|
---|
227 |
|
---|
228 | .text-button:hover {
|
---|
229 | background-color: darkgreen;
|
---|
230 | color: white;
|
---|
231 | }
|
---|
232 | .footer-content{
|
---|
233 | display: grid;
|
---|
234 | grid-template-columns: 2fr 1fr;
|
---|
235 | gap: 80px;
|
---|
236 | padding-top: 50px;
|
---|
237 | justify-content: center;
|
---|
238 | height: 400px;
|
---|
239 | }
|
---|
240 | .icons li img {
|
---|
241 | height: 50px;
|
---|
242 | border:2px solid black;
|
---|
243 | border-radius: 50%;
|
---|
244 | padding: 10px;
|
---|
245 | }
|
---|
246 | .icons li{
|
---|
247 | padding: 10px;
|
---|
248 | }
|
---|
249 | .icons li img:hover {
|
---|
250 | background-color: white; /* Change background color on hover */
|
---|
251 | border-color: darkslategrey; /* Change border color on hover */
|
---|
252 | }
|
---|
253 | .footer-left p img{
|
---|
254 | height: 30px;
|
---|
255 | padding: 0;
|
---|
256 | margin: 0;
|
---|
257 | }
|
---|
258 | .icons{
|
---|
259 | list-style-type: none;
|
---|
260 | display: flex;
|
---|
261 | width: 200px;
|
---|
262 | justify-content: center;
|
---|
263 | padding: 0;
|
---|
264 | margin: 0 auto;
|
---|
265 |
|
---|
266 | }
|
---|
267 | .footer-left *{
|
---|
268 | padding-bottom: 5px;
|
---|
269 | }
|
---|
270 | .footer-left{
|
---|
271 | text-align: center;
|
---|
272 | }
|
---|
273 |
|
---|
274 |
|
---|
275 | /*login*/
|
---|
276 |
|
---|
277 | .popup {
|
---|
278 | display: none; /* Hide the form */
|
---|
279 | position: fixed; /* Position it relative to the viewport */
|
---|
280 | z-index: 2; /* Ensure it appears above other content */
|
---|
281 | left: 50%;
|
---|
282 | top: 50%;
|
---|
283 | transform: translate(-50%, -50%); /* Center it horizontally and vertically */
|
---|
284 | width: 500px; /* Set a fixed width for the form */
|
---|
285 | padding: 25px; /* Add some padding */
|
---|
286 | background-color: white; /* Background color of the form */
|
---|
287 | box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* Add a shadow for better visibility */
|
---|
288 | border-radius: 10px; /* Slightly round the corners */
|
---|
289 | }
|
---|
290 |
|
---|
291 | /* Style the close button */
|
---|
292 | .popup .close-btn {
|
---|
293 | position: absolute;
|
---|
294 | top: 10px;
|
---|
295 | right: 10px;
|
---|
296 | font-size: 20px;
|
---|
297 | cursor: pointer;
|
---|
298 | }
|
---|
299 |
|
---|
300 | /* Add some basic styling for the form content */
|
---|
301 | .popup-content {
|
---|
302 | display: flex; /* Use flexbox for layout */
|
---|
303 | flex-direction: column; /* Stack children vertically */
|
---|
304 | align-items: stretch; /* Ensure all elements take the full width */
|
---|
305 | text-align: center; /* Center the content */
|
---|
306 | }
|
---|
307 |
|
---|
308 | .popup-content h2 {
|
---|
309 | margin-bottom: 20px; /* Add some space below the title */
|
---|
310 | }
|
---|
311 |
|
---|
312 | .popup-content label {
|
---|
313 | display: block; /* Make the labels block elements */
|
---|
314 | margin-bottom: 10px; /* Add some space below the labels */
|
---|
315 | text-align: left; /* Align the text to the left */
|
---|
316 | }
|
---|
317 |
|
---|
318 | .popup-content input {
|
---|
319 | width: 100%; /* Make the inputs take up the full width */
|
---|
320 | padding: 8px; /* Add some padding inside the inputs */
|
---|
321 | margin-bottom: 20px; /* Add space below the inputs */
|
---|
322 | border: 1px solid #ccc; /* Light border around inputs */
|
---|
323 | border-radius: 5px; /* Slightly round the input corners */
|
---|
324 | }
|
---|
325 |
|
---|
326 | .popup-content button {
|
---|
327 | padding: 10px 20px; /* Add padding to the button */
|
---|
328 | background-color: #007BFF; /* Button background color */
|
---|
329 | color: white; /* Button text color */
|
---|
330 | border: none; /* Remove the default border */
|
---|
331 | border-radius: 5px; /* Round the button corners */
|
---|
332 | cursor: pointer; /* Add a pointer cursor on hover */
|
---|
333 | }
|
---|
334 |
|
---|
335 | .popup-content button:hover {
|
---|
336 | background-color: #0056b3; /* Darken the button on hover */
|
---|
337 | }
|
---|
338 | body.no-scroll {
|
---|
339 | overflow: hidden;
|
---|
340 | }
|
---|
341 | .dataForms{
|
---|
342 | display: flex; /* Use flexbox for layout */
|
---|
343 | flex-direction: column; /* Stack children vertically */
|
---|
344 | align-items: stretch; /* Ensure all elements take the full width */
|
---|
345 | text-align: center; /* Center the content */
|
---|
346 | } |
---|