[743de55] | 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 {
|
---|
[43c9090] | 68 | display: none;
|
---|
| 69 | position: absolute;
|
---|
[743de55] | 70 | left: 0;
|
---|
[43c9090] | 71 | top: 100%;
|
---|
| 72 | background-color: white;
|
---|
| 73 | border: 1px solid #ddd;
|
---|
| 74 | padding: 10px;
|
---|
| 75 | box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
---|
| 76 | width: 100%;
|
---|
[743de55] | 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: #F7F7F5;
|
---|
| 101 | }
|
---|
| 102 | .main-image{
|
---|
| 103 | height: 250px;
|
---|
| 104 | position: relative;
|
---|
| 105 | z-index: 1;
|
---|
| 106 | }
|
---|
| 107 | .items-register{
|
---|
| 108 | font-family: "Kumbh Sans", sans-serif;
|
---|
[43c9090] | 109 | position: absolute;
|
---|
| 110 | left: 900px;
|
---|
[743de55] | 111 | }
|
---|
| 112 | .items-register p{
|
---|
| 113 | text-transform: uppercase;
|
---|
| 114 | font-weight: bold;
|
---|
| 115 | font-size: 18px ;
|
---|
| 116 | padding: 10px;
|
---|
| 117 | text-align: center;
|
---|
| 118 | }
|
---|
| 119 |
|
---|
| 120 | .form-imp{
|
---|
| 121 | display: flex;
|
---|
| 122 | flex-direction: column;
|
---|
| 123 | align-items: center;
|
---|
| 124 | width: auto;
|
---|
| 125 | padding: 10px;
|
---|
| 126 | }
|
---|
| 127 | input , button {
|
---|
[43c9090] | 128 | border-radius: 5px;
|
---|
| 129 | padding: 7px;
|
---|
| 130 | border: 1px solid #9D9D9D;
|
---|
[743de55] | 131 | }
|
---|
| 132 | button{
|
---|
| 133 | background-color: #10B981;
|
---|
| 134 | color:white;
|
---|
| 135 | }
|
---|
[43c9090] | 136 | #personalised{
|
---|
| 137 | font-size: xx-large;
|
---|
| 138 | font-family: "Caveat", cursive;
|
---|
| 139 | }
|
---|
[743de55] | 140 | .white-part{
|
---|
[43c9090] | 141 | display: flex;
|
---|
| 142 | flex-direction: column;
|
---|
[743de55] | 143 | background-color: white;
|
---|
| 144 | width: 415px;
|
---|
| 145 | border-radius: 5px;
|
---|
[43c9090] | 146 | padding: 20px;
|
---|
| 147 | }
|
---|
| 148 | a {
|
---|
| 149 | text-decoration: none;
|
---|
| 150 | }
|
---|
| 151 | .logged-in{
|
---|
| 152 | padding: 20px;
|
---|
| 153 | font-family: "Kumbh Sans", sans-serif;
|
---|
[743de55] | 154 | }
|
---|
| 155 | .split-title{
|
---|
| 156 | display: block;
|
---|
| 157 | padding-left: 80px;
|
---|
| 158 | }
|
---|
| 159 | .part-1{
|
---|
| 160 | display: flex;
|
---|
| 161 | justify-content: center;
|
---|
| 162 | align-items: center;
|
---|
| 163 | height: 500px;
|
---|
| 164 | gap: 80px;
|
---|
| 165 | }
|
---|
| 166 |
|
---|
| 167 | .part1-text{
|
---|
| 168 | font-family: "Caveat", cursive;
|
---|
| 169 | font-optical-sizing: auto;
|
---|
| 170 | font-weight: 500;
|
---|
| 171 | font-style: normal;
|
---|
| 172 | font-size: 23px;
|
---|
| 173 | width: 500px;
|
---|
| 174 | }
|
---|
| 175 | .puzzle{
|
---|
| 176 | height: 300px;
|
---|
| 177 | }
|
---|
| 178 | .part1-text *{
|
---|
| 179 | padding: 10px;
|
---|
| 180 | }
|
---|
| 181 | .part2{
|
---|
| 182 | display: flex;
|
---|
| 183 | justify-content: space-between;
|
---|
| 184 | gap: 20px;
|
---|
| 185 | height: 550px;
|
---|
| 186 | align-items: center;
|
---|
| 187 | background-color: #F7F7F5;
|
---|
| 188 | }
|
---|
| 189 | .part2 > div{
|
---|
| 190 | flex:1;
|
---|
| 191 | display: flex;
|
---|
| 192 | justify-content: center;
|
---|
| 193 | }
|
---|
| 194 | .part2 > div:first-child {
|
---|
[43c9090] | 195 | justify-content: flex-end;
|
---|
[743de55] | 196 | }
|
---|
| 197 |
|
---|
| 198 | .part2-content{
|
---|
| 199 | width: 500px;
|
---|
| 200 | font-family: "Kumbh Sans", sans-serif;
|
---|
| 201 | }
|
---|
| 202 | .slika-chicho, .part2-content {
|
---|
| 203 | height:350px;
|
---|
| 204 | border-radius: 5px;
|
---|
| 205 | }
|
---|
| 206 | .head1, .head2{
|
---|
| 207 | font-family: "Kumbh Sans", sans-serif;
|
---|
| 208 | font-weight: bold;
|
---|
| 209 | display: block;
|
---|
| 210 | }
|
---|
| 211 |
|
---|
| 212 | .head2{
|
---|
| 213 | font-size: 19px;
|
---|
| 214 | }
|
---|
| 215 | .head1{
|
---|
| 216 | font-size: 25px;
|
---|
| 217 | padding-bottom: 20px;
|
---|
| 218 | }
|
---|
| 219 | footer{
|
---|
| 220 | background-color: rgba(206, 228, 237, 0.97);
|
---|
| 221 | }
|
---|
| 222 | .text-button{
|
---|
| 223 | background-color: transparent;
|
---|
| 224 | color: darkgreen;
|
---|
[43c9090] | 225 | border: 2px solid darkgreen;
|
---|
| 226 | border-radius: 12px;
|
---|
| 227 | font-weight: bold;
|
---|
| 228 | padding: 10px 20px;
|
---|
| 229 | cursor: pointer;
|
---|
| 230 | font-family: "Kumbh Sans", sans-serif;
|
---|
| 231 | font-size: 16px;
|
---|
[743de55] | 232 | }
|
---|
| 233 |
|
---|
| 234 | .text-button:hover {
|
---|
| 235 | background-color: darkgreen;
|
---|
| 236 | color: white;
|
---|
| 237 | }
|
---|
| 238 | .footer-content{
|
---|
| 239 | display: grid;
|
---|
| 240 | grid-template-columns: 2fr 1fr;
|
---|
| 241 | gap: 80px;
|
---|
| 242 | padding-top: 50px;
|
---|
| 243 | justify-content: center;
|
---|
| 244 | height: 400px;
|
---|
| 245 | }
|
---|
| 246 | .icons li img {
|
---|
| 247 | height: 50px;
|
---|
| 248 | border:2px solid black;
|
---|
| 249 | border-radius: 50%;
|
---|
| 250 | padding: 10px;
|
---|
| 251 | }
|
---|
| 252 | .icons li{
|
---|
| 253 | padding: 10px;
|
---|
| 254 | }
|
---|
| 255 | .icons li img:hover {
|
---|
[43c9090] | 256 | background-color: white;
|
---|
| 257 | border-color: darkslategrey;
|
---|
[743de55] | 258 | }
|
---|
| 259 | .footer-left p img{
|
---|
| 260 | height: 30px;
|
---|
| 261 | padding: 0;
|
---|
| 262 | margin: 0;
|
---|
| 263 | }
|
---|
| 264 | .icons{
|
---|
| 265 | list-style-type: none;
|
---|
| 266 | display: flex;
|
---|
| 267 | width: 200px;
|
---|
| 268 | justify-content: center;
|
---|
| 269 | padding: 0;
|
---|
| 270 | margin: 0 auto;
|
---|
| 271 |
|
---|
| 272 | }
|
---|
| 273 | .footer-left *{
|
---|
| 274 | padding-bottom: 5px;
|
---|
| 275 | }
|
---|
| 276 | .footer-left{
|
---|
| 277 | text-align: center;
|
---|
| 278 | }
|
---|
| 279 |
|
---|
| 280 | .popup {
|
---|
[43c9090] | 281 | display: none;
|
---|
| 282 | position: fixed;
|
---|
| 283 | z-index: 2;
|
---|
[743de55] | 284 | left: 50%;
|
---|
| 285 | top: 50%;
|
---|
[43c9090] | 286 | transform: translate(-50%, -50%);
|
---|
| 287 | width: 500px;
|
---|
| 288 | height: auto;
|
---|
| 289 | padding: 25px;
|
---|
| 290 | background-color: white;
|
---|
| 291 | box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
|
---|
| 292 | border-radius: 10px;
|
---|
| 293 | font-family: "Kumbh Sans", sans-serif;
|
---|
[743de55] | 294 | }
|
---|
| 295 |
|
---|
| 296 | .popup .close-btn {
|
---|
| 297 | position: absolute;
|
---|
| 298 | top: 10px;
|
---|
| 299 | right: 10px;
|
---|
| 300 | font-size: 20px;
|
---|
| 301 | cursor: pointer;
|
---|
| 302 | }
|
---|
[43c9090] | 303 | #submit-btn{
|
---|
| 304 | width: 120px;
|
---|
| 305 | background-color: #10B981;
|
---|
| 306 | }
|
---|
| 307 | #loginForm > div > h2{
|
---|
| 308 | text-align: center;
|
---|
| 309 | }
|
---|
[743de55] | 310 |
|
---|
| 311 | .popup-content {
|
---|
[43c9090] | 312 | padding: 20px;
|
---|
| 313 | width: 100%;
|
---|
| 314 | display: flex;
|
---|
| 315 | flex-direction: column;
|
---|
| 316 | align-items: stretch;
|
---|
[743de55] | 317 | }
|
---|
| 318 |
|
---|
| 319 | .popup-content h2 {
|
---|
[43c9090] | 320 | margin-bottom: 20px;
|
---|
[743de55] | 321 | }
|
---|
| 322 |
|
---|
| 323 | .popup-content label {
|
---|
[43c9090] | 324 | display: block;
|
---|
| 325 | margin-bottom: 10px;
|
---|
| 326 | text-align: left;
|
---|
[743de55] | 327 | }
|
---|
| 328 |
|
---|
| 329 | .popup-content input {
|
---|
[43c9090] | 330 | width: 100%;
|
---|
| 331 | padding: 8px;
|
---|
| 332 | margin-bottom: 20px;
|
---|
| 333 | border: 1px solid #ccc;
|
---|
| 334 | border-radius: 5px;
|
---|
[743de55] | 335 | }
|
---|
| 336 |
|
---|
| 337 | .popup-content button {
|
---|
[43c9090] | 338 | padding: 10px 20px;
|
---|
| 339 | background-color: #007BFF;
|
---|
| 340 | color: white;
|
---|
| 341 | border: none;
|
---|
| 342 | border-radius: 5px;
|
---|
| 343 | cursor: pointer;
|
---|
[743de55] | 344 | }
|
---|
| 345 |
|
---|
| 346 | .popup-content button:hover {
|
---|
[43c9090] | 347 | background-color: #0056b3;
|
---|
[743de55] | 348 | }
|
---|
| 349 | body.no-scroll {
|
---|
| 350 | overflow: hidden;
|
---|
| 351 | }
|
---|
| 352 | .dataForms{
|
---|
[43c9090] | 353 | display: flex;
|
---|
| 354 | flex-direction: column;
|
---|
| 355 | align-items: stretch;
|
---|
| 356 | text-align: center;
|
---|
| 357 |
|
---|
| 358 | }
|
---|
| 359 | #links{
|
---|
| 360 | padding: 10px;
|
---|
| 361 | display: flex;
|
---|
| 362 | flex-direction: column;
|
---|
| 363 | gap: 5px;
|
---|
| 364 | color: darkgreen;
|
---|
| 365 | }
|
---|
| 366 | .logged-in{
|
---|
| 367 | position: absolute;
|
---|
| 368 | left: 900px;
|
---|
| 369 | padding: 30px;
|
---|
| 370 | }
|
---|
| 371 | a img{
|
---|
| 372 | transform: rotate(-90deg);
|
---|
| 373 | height: 20px;
|
---|
| 374 | margin-right: 10px;
|
---|
| 375 | }
|
---|
| 376 | #signInForm{
|
---|
| 377 | height: 500px;
|
---|
| 378 | width: 700px;
|
---|
| 379 | }
|
---|
| 380 | #signInForm > div > form{
|
---|
| 381 | display: grid;
|
---|
| 382 | grid-template-columns: repeat(2, 1fr);
|
---|
| 383 | grid-template-rows: repeat(3, 1fr);
|
---|
| 384 | gap: 10px;
|
---|
| 385 | }
|
---|
| 386 | #authButton{
|
---|
| 387 | position: absolute;
|
---|
| 388 | left: 1145px;
|
---|
| 389 | top: 21px;
|
---|
| 390 | width: 150px;
|
---|
| 391 | color: white;
|
---|
| 392 | background-color: red;
|
---|
| 393 | padding: 10px;
|
---|
| 394 | border: none;
|
---|
| 395 | border-radius: 5px;
|
---|
| 396 | }
|
---|
| 397 |
|
---|
| 398 | #create{
|
---|
| 399 | width: 200px;
|
---|
| 400 | padding: 15px;
|
---|
| 401 | background-color: #10B981;
|
---|
| 402 | position: absolute;
|
---|
| 403 | top: 80%;
|
---|
| 404 | left: 50%;
|
---|
| 405 | transform: translate(-50%, -50%);
|
---|
| 406 | margin-top: 20px;
|
---|
[743de55] | 407 | } |
---|