Projekt

Obecné

Profil

Stáhnout (22.3 KB) Statistiky
| Větev: | Tag: | Revize:
1 4bb8ff64 zabran
// Variables
2
@import 'variables';
3 1c3121fe zabran
4 c4f6e57a Adam Mištera
body {
5 c38f4c3a zabran
    background-color: $theme-color-five;
6 83496d8e zabran
    font-family: $font-family-one;
7 d79e27be Marek Lovčí
    padding-top: 5.1rem;
8 34c0b905 rizir01
9 c4f6e57a Adam Mištera
    .head-title h1 {
10 c38f4c3a zabran
        color: $theme-color-one;
11 83496d8e zabran
        font-weight: $font-weight-one;
12 c4f6e57a Adam Mištera
        font-size: 60pt;
13 83496d8e zabran
        //font-weight: bold;
14 c4f6e57a Adam Mištera
        letter-spacing: 3px;
15
    }
16 34c0b905 rizir01
17 c4f6e57a Adam Mištera
    .carousel {
18 d79e27be Marek Lovčí
        margin-top: - 5.1rem;
19
20 c4f6e57a Adam Mištera
        .carousel-inner {
21 d668e889 Adam Mištera
            .museum-logo {
22
                display: flex;
23
                justify-content: center;
24
                position: absolute;
25
                top: 5%;
26
                width: 100%;
27
                z-index: 1;
28 f5ea2a43 Adam Mištera
29
                img {
30
                    width: 7.5rem;
31
                }
32 d668e889 Adam Mištera
            }
33
34
            .social-logo {
35
                text-align: center;
36 f5ea2a43 Adam Mištera
                justify-content: space-around;
37 d668e889 Adam Mištera
                flex-wrap: nowrap;
38
                position: absolute;
39
                top: 25%;
40
                padding-left: 25px;
41
                width: 100%;
42
                z-index: 1;
43 f5ea2a43 Adam Mištera
44
                img {
45
                    width: 2.0625rem;
46
                }
47 d668e889 Adam Mištera
            }
48
49
            .carousel-button {
50
                bottom: 10%;
51
                left: 50%;
52
                transform: translateX(-50%);
53
                position: absolute;
54
                z-index: 1;
55
            }
56
57
            .carousel-item {
58
                height: 100vh;
59
                min-height: 350px;
60
                background: no-repeat center center scroll;
61
                -webkit-background-size: cover;
62
                -moz-background-size: cover;
63
                -o-background-size: cover;
64
                background-size: cover;
65 c4f6e57a Adam Mištera
            }
66
        }
67
68
        .carousel-caption {
69 d668e889 Adam Mištera
            top: 50%;
70
            bottom: auto;
71
            transform: translateY(-50%);
72 d79e27be Marek Lovčí
            background-color: rgba(239, 218, 179, 0.5);
73 c4f6e57a Adam Mištera
        }
74
    }
75 3b97c440 zabran
76 2b1ca67d zabran
    /////////text types
77
    //většina běžných textů
78
    .text {
79 83496d8e zabran
        font-weight: $font-weight-one;
80 2b1ca67d zabran
        font-size: 8pt;
81
        line-height: 9pt;
82
    }
83
84
    //text inputu a název artefaktů
85 d79e27be Marek Lovčí
    .text2 {
86 83496d8e zabran
        font-weight: $font-weight-two;
87 2b1ca67d zabran
        font-size: 8pt;
88
    }
89
90
    //název "kaplicky" a "choose a few" v categories (tam má jinou barvu)
91 d79e27be Marek Lovčí
    .kaplicky {
92 2b1ca67d zabran
        color: $theme-color-one;
93
        font-size: 11pt;
94 83496d8e zabran
        font-weight: $font-weight-three;
95 2b1ca67d zabran
        letter-spacing: 3pt;
96
    }
97
98
    //autor artefaktu
99 d79e27be Marek Lovčí
    .text-author {
100 83496d8e zabran
        font-weight: $font-weight-one;
101 2b1ca67d zabran
        font-size: 7pt;
102
        color: $theme-color-four;
103
    }
104
105
    //počet lajků
106 d79e27be Marek Lovčí
    .text-number {
107 83496d8e zabran
        font-weight: $font-weight-two;
108 2b1ca67d zabran
        font-size: 5pt;
109
        color: $theme-color-four;
110
    }
111
112
    //notes u metadat, about v about, text levého menu
113 d79e27be Marek Lovčí
    .text-headline {
114 83496d8e zabran
        font-weight: $font-weight-two;
115 2b1ca67d zabran
        font-size: 12pt;
116
        color: $theme-color-four;
117
    }
118
119 79e22cad zabran
    //notes u metadat, about v about, text levého menu
120
    .text-headline-desktop {
121
        font-weight: $font-weight-two;
122
        font-size: 24pt;
123
        color: $theme-color-four;
124
    }
125
126 2b1ca67d zabran
    //název metadata, text pravého menu
127 d79e27be Marek Lovčí
    .text-page {
128 83496d8e zabran
        font-weight: $font-weight-two;
129 2b1ca67d zabran
        font-size: 7pt;
130
    }
131
132 aee27358 zabran
    ////color pro změnu jen barvy
133 d79e27be Marek Lovčí
    .black {
134 aee27358 zabran
        color: $theme-color-five;
135
    }
136 d79e27be Marek Lovčí
137
    .white {
138 aee27358 zabran
        color: $theme-color-one;
139
    }
140 d79e27be Marek Lovčí
141
    .colored {
142 aee27358 zabran
        color: $theme-color-four;
143
    }
144
145 2b1ca67d zabran
146
    ////login
147 d79e27be Marek Lovčí
    .auth {
148
        .card {
149 3b97c440 zabran
            border: none;
150
            text-align: center;
151
            font-size: 8pt;
152
        }
153 3b397a49 zabran
154 d79e27be Marek Lovčí
        .col-form-label {
155 3b397a49 zabran
            text-align: left;
156 c0265e9e zabran
            padding-top: 0;
157
            padding-bottom: 0;
158 3b397a49 zabran
        }
159 d79e27be Marek Lovčí
160
        .form-control {
161 c0265e9e zabran
            padding: 0;
162 3b397a49 zabran
            height: 17pt;
163 c0265e9e zabran
            border-radius: 0;
164 d79e27be Marek Lovčí
165
            &:focus {
166 7929abb4 zabran
                border-color: $theme-color-one;
167
                -webkit-box-shadow: none;
168
                box-shadow: none;
169
            }
170
        }
171 3b97c440 zabran
    }
172
173 76a0a13d zabran
    //Oprava barev pro Chrom
174
    input:-webkit-autofill {
175 d79e27be Marek Lovčí
        -webkit-box-shadow: 0 0 0 50px $theme-color-five inset !important;
176 76a0a13d zabran
        -webkit-text-fill-color: $theme-color-one;
177 7929abb4 zabran
        background-color: $theme-color-five !important;
178
        //outline: none !important;
179 d79e27be Marek Lovčí
        &:active, &:focus, &:visited, &:hover {
180
            -webkit-box-shadow: 0 0 0 50px $theme-color-five inset !important;
181 76a0a13d zabran
            -webkit-text-fill-color: $theme-color-one;
182 7929abb4 zabran
            background-color: $theme-color-five !important;
183
            //outline: none !important;
184 76a0a13d zabran
        }
185
    }
186
187 5481d358 Adam Mištera
    .card-body {
188 d79e27be Marek Lovčí
        background-color: $theme-color-five;
189
        font-weight: $font-weight-one;
190
        color: $theme-color-four;
191
    }
192
193
    .form-control {
194
        background-color: $theme-color-five;
195
        margin-top: -1px;
196
        border-top-color: $theme-color-five;
197
        border-left-color: $theme-color-five;
198
        border-right-color: $theme-color-five;
199
        border-bottom-color: 0.5pt $theme-color-one;
200
        color: $theme-color-one;
201 3b97c440 zabran
        box-shadow: none;
202
        font-size: 8pt;
203 7929abb4 zabran
        outline: none;
204 4bb8ff64 zabran
205 d79e27be Marek Lovčí
        &:active, &:focus, &:visited, &:hover {
206 7929abb4 zabran
            outline: none;
207 4bb8ff64 zabran
            background-color: $theme-color-five;
208
            margin-top: -1px;
209
            border-top-color: $theme-color-five;
210
            border-left-color: $theme-color-five;
211
            border-right-color: $theme-color-five;
212
            border-bottom-color: 0.5pt $theme-color-one;
213
            color: $theme-color-one;
214
            box-shadow: none;
215
        }
216
217 d79e27be Marek Lovčí
    }
218
219
    .form-control.is-invalid {
220 4bb8ff64 zabran
        box-shadow: none;
221
        border-color: $theme-color-four;
222
        background-image: none;
223 d79e27be Marek Lovčí
224
        &:active, &:focus, &:visited {
225 4bb8ff64 zabran
            box-shadow: none;
226
            border-color: $theme-color-four;
227
        }
228
    }
229 34c0b905 rizir01
230 c4f6e57a Adam Mištera
    .button-square {
231 d668e889 Adam Mištera
        font-size: 8pt;
232 c38f4c3a zabran
        background-color: $theme-color-five;
233
        color: $theme-color-one;
234
        border: 0.5pt solid $theme-color-one;
235 c4f6e57a Adam Mištera
        border-radius: 0;
236 2696c864 Adam Mištera
        width: 6.5rem;
237
        height: 2rem;
238 83496d8e zabran
        font-weight: $font-weight-one;
239 2696c864 Adam Mištera
240 eeaf2e21 zabran
        &:active, &:focus, &:visited, &:hover {
241 2696c864 Adam Mištera
            outline: none;
242
            box-shadow: none;
243 eeaf2e21 zabran
            color: $theme-color-one;
244
        }
245 d79e27be Marek Lovčí
246
        &:hover {
247 eeaf2e21 zabran
            color: $theme-color-four;
248 2696c864 Adam Mištera
        }
249 c4f6e57a Adam Mištera
    }
250 34c0b905 rizir01
251 aee27358 zabran
    //spendlik
252
    .pin-left:before {
253
        content: '';
254
        position: relative;
255
        height: 0.35433rem;
256
        width: 0.35433rem;
257
        background-color: $theme-color-one;
258
        border-radius: 50%;
259
        display: inline-block;
260
        top: -0.35433rem;
261
        left: -0.2rem;
262
    }
263
264
    .pin-left {
265
        border-left: .5pt solid $theme-color-four;
266 8075a85b zabran
        position: fixed;
267
        bottom: 0;
268 aee27358 zabran
        text-align: left;
269 d79e27be Marek Lovčí
270
        // center fixed div
271
        left: 50%;
272
        transform: translateX(-50%);
273
        width: 70%;
274
275
        .text {
276 83496d8e zabran
            margin-left: 0.5rem;
277 d79e27be Marek Lovčí
            margin-bottom: 0.2rem; // looks fugly without margin
278 83496d8e zabran
        }
279 d79e27be Marek Lovčí
280
        p {
281 c0265e9e zabran
            margin-top: 0;
282
            margin-bottom: 0;
283 83496d8e zabran
        }
284 aee27358 zabran
    }
285
286 d79e27be Marek Lovčí
    li {
287 b711d297 zabran
        list-style-type: none;
288
    }
289
290 c4f6e57a Adam Mištera
    .button-image {
291
        background-color: transparent;
292
        border-color: transparent;
293
294
        &:before {
295
            content: "";
296
            width: 100px;
297
            height: 100px;
298
            display: inline-block;
299
            margin-right: 5px;
300
            vertical-align: text-top;
301
            background-color: transparent;
302 d79e27be Marek Lovčí
            background-position: center center;
303
            background-repeat: no-repeat;
304 c4f6e57a Adam Mištera
        }
305
    }
306 34c0b905 rizir01
307 70f69b41 Adam Mištera
    .artefacts-area, .artefact-area {
308 084eca03 Adam Mištera
309 b56b3d9b Adam Mištera
        h5 {
310
            color: $theme-color-two;
311 83496d8e zabran
            font-weight: $font-weight-two;
312 b56b3d9b Adam Mištera
            line-height: 20pt;
313
            font-size: 21pt;
314
        }
315 084eca03 Adam Mištera
316 b56b3d9b Adam Mištera
        h6 {
317
            color: $theme-color-two;
318
            font-size: 14pt;
319 83496d8e zabran
            //font-weight: lighter;
320
            font-weight: $font-weight-one;
321 b56b3d9b Adam Mištera
        }
322 084eca03 Adam Mištera
323 b56b3d9b Adam Mištera
        img {
324
            border: transparent;
325
            border-radius: 1px;
326
        }
327 084eca03 Adam Mištera
328 b56b3d9b Adam Mištera
        .card {
329
            margin: 10px;
330
            border: none !important;
331
        }
332 084eca03 Adam Mištera
333 b56b3d9b Adam Mištera
        .left_panel_info {
334
            margin-top: 15px;
335
            margin-left: -10px;
336
            max-width: 250px;
337
        }
338
339
        .right_panel_info {
340
            margin-top: 15px;
341
            margin-right: -15px;
342
        }
343
344
        .card-cus-bottom {
345
            background-color: $theme-color-five;
346
        }
347
348
        .inter_info {
349
            &:before {
350
                background-image: url(../images/interface/Button_Info_50.png);
351
                width: 60px;
352
                height: 60px;
353
            }
354
        }
355
356
        .inter_like {
357
            display: none;
358 d79e27be Marek Lovčí
359 b56b3d9b Adam Mištera
            &:before {
360 d79e27be Marek Lovčí
                background-image: url(../images/interface/Hearth_Empty_50.png);
361 b56b3d9b Adam Mištera
                width: 60px;
362
                height: 60px;
363
            }
364
        }
365
366
        .inter_like_filled {
367
            &:before {
368 d79e27be Marek Lovčí
                background-image: url(../images/interface/Hearth_Filled_50.png);
369 b56b3d9b Adam Mištera
                width: 60px;
370
                height: 60px;
371
            }
372
        }
373
374
        .inter_info, .inter_like, .inter_like_filled {
375
            padding: 0;
376 d79e27be Marek Lovčí
377 b56b3d9b Adam Mištera
            &:focus, &:active, &:hover {
378
                background-color: transparent !important;
379
                border-color: transparent !important;
380
                outline: none !important;
381
                box-shadow: none !important;
382 d79e27be Marek Lovčí
            }
383
        ;
384 b56b3d9b Adam Mištera
        }
385
    }
386 34c0b905 rizir01
387 bfa73340 Adam Mištera
    // Artefact area
388 70f69b41 Adam Mištera
    .artefact-area {
389
390
        .card-cus-bottom {
391
            .left_panel_info, .right_panel_info {
392
                margin: 0.9375rem 0 0 0;
393
            }
394
395
            .right_panel_info {
396
                .float-right {
397
                    margin-right: -0.35rem;
398
                }
399
            }
400
        }
401
402
        .artefact-name {
403
            font-weight: $font-weight-two;
404
            font-size: 8pt;
405
            line-height: 10pt;
406
            margin-bottom: 0;
407
        }
408
409
        .artefact-author {
410
            font-size: 7pt;
411
            line-height: 8pt;
412
        }
413
414
        .inter_like {
415
            display: block;
416
417
            &:before {
418 bfa73340 Adam Mištera
                background-image: url(../images/interface/Heart_Empty.svg);
419
                width: 1.563rem;
420
                height: 1.25rem;
421
            }
422
        }
423
424
        .inter_like_filled {
425
            &:before {
426 d79e27be Marek Lovčí
                background-image: url(../images/interface/Heart_Filled.svg);
427 bfa73340 Adam Mištera
                width: 1.563rem;
428
                height: 1.25rem;
429 70f69b41 Adam Mištera
            }
430
        }
431
432
        .inter_info {
433
434
            padding-right: 1rem;
435 d79e27be Marek Lovčí
436 70f69b41 Adam Mištera
            &:before {
437 bfa73340 Adam Mištera
                background-image: url(../images/interface/Button_Info.svg);
438
                width: 1.875rem;
439
                height: 1.875rem;
440 70f69b41 Adam Mištera
            }
441
        }
442
443
        .artefact-likes {
444
            font-weight: $font-weight-two;
445
            font-size: 5pt;
446
            padding-right: 0.25rem;
447
        }
448
    }
449
450 3e4f999e Adam Mištera
    // Metadata area
451 3c062db9 Adam Mištera
    .metadata-area {
452
453
        h2 {
454 1bcdcb05 Adam Mištera
            color: $theme-color-two;
455 3c062db9 Adam Mištera
            font-weight: $font-weight-two;
456
            font-size: 12pt;
457
        }
458
459 3e4f999e Adam Mištera
        .arrow-down {
460 3dfc8d9f Adam Mištera
            position: fixed;
461 3e4f999e Adam Mištera
            top: 0.25rem;
462
            right: 0;
463
            margin: 2rem;
464
            width: 0;
465
            height: 0;
466
            border-left: 0.59055rem solid transparent;
467
            border-right: 0.59055rem solid transparent;
468
            border-top: 0.59055rem solid $theme-color-two;
469 3c062db9 Adam Mištera
        }
470
471
        .pin-horizontal {
472 3e4f999e Adam Mištera
            color: $theme-color-two;
473
            border-bottom: .042rem solid $theme-color-two;
474 3c062db9 Adam Mištera
            display: inline-block;
475 26e128a8 Adam Mištera
            margin: 2.75rem 3.125rem 0 0;
476 3e4f999e Adam Mištera
477 d79e27be Marek Lovčí
            &:after {
478 3c062db9 Adam Mištera
                content: '';
479 d79e27be Marek Lovčí
                background-color: #ddd1b9;
480 3c062db9 Adam Mištera
                position: relative;
481
                height: .5rem;
482
                width: .5rem;
483
                border-radius: 50%;
484 d79e27be Marek Lovčí
                display: block;
485
                margin-left: auto;
486
                top: .25rem;
487 3c062db9 Adam Mištera
            }
488
489 3e4f999e Adam Mištera
            .metadata {
490
                position: relative;
491
                display: flex;
492
                align-items: baseline;
493
494
                span {
495
                    font-weight: $font-weight-two;
496
                }
497
498
                .arrow-down {
499
                    position: relative;
500
                    top: 0;
501
                    right: 0;
502
                    width: 0;
503
                    height: 0;
504
                    border-left: 0.25rem solid transparent;
505
                    border-right: 0.25rem solid transparent;
506
                    border-top: 0.25rem solid $theme-color-two;
507
                    margin: 0 0.5rem 0 0.5rem;
508
                }
509 3c062db9 Adam Mištera
            }
510 3e4f999e Adam Mištera
        }
511
512
        .white-pin {
513
            color: $theme-color-one;
514
            border-bottom: .042rem solid $theme-color-one;
515 3c062db9 Adam Mištera
516 3e4f999e Adam Mištera
            &:before {
517
                content: '';
518
                background-color: $theme-color-one;
519
            }
520 3c062db9 Adam Mištera
521 3e4f999e Adam Mištera
            .metadata {
522
                .arrow-down {
523
                    border-top: 0.25rem solid $theme-color-one;
524
                }
525
            }
526 3c062db9 Adam Mištera
        }
527
528
        .metadata-text {
529 3e4f999e Adam Mištera
            font-size: 8pt;
530 3c062db9 Adam Mištera
            color: $theme-color-one;
531
            padding-top: 10px;
532
            padding-left: 25px;
533
            padding-right: 25px;
534
535
            .artefact-info {
536
                color: $theme-color-two;
537
                margin-top: 10px;
538
539
                .artefact-name {
540 3e4f999e Adam Mištera
                    font-weight: $font-weight-two;
541 3c062db9 Adam Mištera
                    font-size: 8pt;
542
                }
543
544
                .artefact-author {
545 3e4f999e Adam Mištera
                    font-weight: $font-weight-one;
546 3c062db9 Adam Mištera
                    font-size: 7pt;
547
                }
548 3e4f999e Adam Mištera
549 1bcdcb05 Adam Mištera
                .inter_like {
550
551
                    &:before {
552
                        background-image: url(../images/interface/Heart_Empty.svg);
553
                        width: 3.125rem;
554
                        height: 3.125rem;
555
                        margin-right: 0;
556
                    }
557
558
                    &:hover, &:focus, &:active {
559
                        background-color: transparent !important;
560
                        border-color: transparent !important;
561
                        outline: none !important;
562
                        box-shadow: none !important;
563
                    }
564
                }
565
566 3e4f999e Adam Mištera
                .inter_like_filled {
567
568
                    &:before {
569 d79e27be Marek Lovčí
                        background-image: url(../images/interface/Heart_Filled.svg);
570 26e128a8 Adam Mištera
                        width: 3.125rem;
571
                        height: 3.125rem;
572
                        margin-right: 0;
573 3e4f999e Adam Mištera
                    }
574
575
                    &:hover, &:focus, &:active {
576
                        background-color: transparent !important;
577
                        border-color: transparent !important;
578
                        outline: none !important;
579
                        box-shadow: none !important;
580
                    }
581
                }
582 3c062db9 Adam Mištera
            }
583
        }
584
    }
585
586 bfa73340 Adam Mištera
    // Modal
587
    .modal {
588
        font-weight: $font-weight-one;
589
        color: $theme-color-two;
590
        font-size: 8pt;
591
592
        .modal-header {
593
            border-bottom: 1px solid $theme-color-two;
594
595
            .close {
596
                color: $theme-color-two;
597
                text-shadow: none;
598
            }
599
        }
600
601
        .modal-content {
602
            background-color: $theme-color-five;
603
        }
604
605
        .modal-footer {
606
            border-top: 1px solid $theme-color-two;
607
608
            .btn {
609
                background-color: $theme-color-two;
610
                color: $theme-color-five;
611
612
            }
613
        }
614
    }
615
616
    .image-modal {
617
        .close {
618
            font-size: 24pt;
619
            color: $theme-color-two;
620
            text-shadow: none;
621
            position: absolute;
622
            top: 1rem;
623
            right: 0.125rem;
624
            opacity: 1;
625
            cursor: pointer;
626
            pointer-events: initial;
627
        }
628
    }
629
630 c0265e9e zabran
    /*.content {
631 977060b9 rizir01
        position: relative;
632 31d75014 rizir01
633 977060b9 rizir01
        //Circle style button
634
        .btn-circle.rounded-circle {
635
            padding: 6px 0px;
636
            font-size: 16px;
637
            text-align: center;
638
        }
639
        .btn-categories
640 c38f4c3a zabran
        {
641 977060b9 rizir01
            position: absolute;
642
            border-width: 5px;
643
            background-color: $theme-color-five;
644 c38f4c3a zabran
            border-color: $theme-color-four;
645 977060b9 rizir01
            color:$theme-color-four;
646 c4f6e57a Adam Mištera
            outline: none !important;
647
            box-shadow: none !important;
648 977060b9 rizir01
            font-weight: $font-weight-two;
649
650
            &:active
651
            {
652
                background-color: $theme-color-three;
653
                border-color: $theme-color-four;
654
                outline: none !important;
655
                box-shadow: none !important;
656
                color:$theme-color-five;
657
            }
658
        }
659 c0265e9e zabran
    }*/
660 977060b9 rizir01
661 6c518068 rizir01
    //CATEGORIES - TILES
662 d79e27be Marek Lovčí
    .btn.btn-dark.cat-tile {
663 6c518068 rizir01
        //STYLING
664
        border-color: $theme-color-four;
665
        border-radius: 0;
666
        border-style: solid;
667
        border-width: 2px;
668
        color: $theme-color-four;
669
        background-color: $theme-color-five;
670
        text-align: center;
671
        outline: none !important;
672
        box-shadow: none !important;
673
674 25ec2fab Marek Lovčí
        //TEXT OVERFLOW
675
        overflow: hidden;
676
        text-overflow: ellipsis;
677
678 6c518068 rizir01
        //FONT
679 25ec2fab Marek Lovčí
        font-size: 22pt;
680 6c518068 rizir01
681
        //SPACING
682 25ec2fab Marek Lovčí
        padding: 4rem 0.5rem;
683 6c518068 rizir01
684 d79e27be Marek Lovčí
        &:active, &:focus {
685 6c518068 rizir01
            background-color: $theme-color-three;
686
            border-color: $theme-color-four;
687
            outline: none !important;
688
            box-shadow: none !important;
689
            color: $theme-color-five;
690 c4f6e57a Adam Mištera
        }
691 6c518068 rizir01
    }
692 c38f4c3a zabran
693 fb354d59 rizir01
    //CATEGORY/{id} -h2 title NO ARTEFACTS
694 d79e27be Marek Lovčí
    .category-h2 {
695 fb354d59 rizir01
        color: $theme-color-four;
696 c4f6e57a Adam Mištera
    }
697 34c0b905 rizir01
}
698
699 d79e27be Marek Lovčí
.top-bar {
700 927fb559 zabran
    background-color: $theme-color-five;
701 d79e27be Marek Lovčí
    height: 5rem;
702 927fb559 zabran
    position: fixed;
703
    width: 100%;
704
    top: 0;
705 d79e27be Marek Lovčí
    z-index: 2;
706 54610fab zabran
    .shadow {
707
        box-shadow: none;
708
    }
709 927fb559 zabran
}
710
711 d79e27be Marek Lovčí
.separator {
712 54610fab zabran
    position: relative;
713
    z-index : 5;
714
    &:before{
715
        width: 50%;
716
        content : "";
717
        position: absolute;
718
        left    : 0;
719
        bottom  : 0;
720
        height  : 1px;
721
        border-bottom:1px solid $theme-color-five;
722
    }
723 927fb559 zabran
}
724
725 1c3121fe zabran
.sidenav {
726
    height: 100%;
727 79e22cad zabran
    width: 0;
728
    //width: 250px;
729 1c3121fe zabran
    position: fixed;
730 d79e27be Marek Lovčí
    z-index: 4;
731 1c3121fe zabran
    top: 0;
732
    left: 0;
733 8075a85b zabran
    background-color: $theme-color-four;
734 1c3121fe zabran
    overflow-x: hidden;
735
    transition: 0.5s;
736
}
737
738
.sidenav a {
739
    text-decoration: none;
740 8075a85b zabran
    color: $theme-color-five;
741 1c3121fe zabran
    display: block;
742
    transition: 0.3s;
743 d79e27be Marek Lovčí
744
    &:hover {
745 927fb559 zabran
        color: $theme-color-four;
746
        background-color: $theme-color-one;
747
    }
748 d79e27be Marek Lovčí
749
    &:active, &:focus, .active {
750 927fb559 zabran
        color: $theme-color-one;
751
        background-color: $theme-color-four;
752
    }
753 1c3121fe zabran
}
754
755 79e22cad zabran
.bar-desktop{
756
    display: flex;
757
    align-items: center;
758
    min-width: 84vw;
759
    margin-left: 8vw;
760
    margin-right: 8vw;
761 fe688930 zabran
    margin-top: 2rem;
762 79e22cad zabran
}
763
764 54610fab zabran
.down {
765
    position: absolute;
766
    z-index: 5;
767
    bottom: 0;
768
    left: 0;
769
    width: 100%;
770
    margin-bottom: 3rem;
771
}
772
773
.menu-item{
774
    padding: 0.25rem 1.5rem;
775
    width: 100%;
776
    border: 0;
777 79e22cad zabran
    &:active, &.active, &:focus{
778
        color: $theme-color-one;
779
        background-color: $theme-color-five;
780
        border: none;
781
        outline: none;
782
        box-shadow: none;
783
    }
784 1c3121fe zabran
}
785
786 d79e27be Marek Lovčí
.logo-kaplicky {
787
    text-align: center;
788 79e22cad zabran
    display: none;
789
    &:active, &.active, &:focus{
790
        outline: none;
791
        box-shadow: none;
792
    }
793 927fb559 zabran
}
794
795 749ca4c4 Marek Lovčí
.vertical-center {
796 d79e27be Marek Lovčí
    margin-top: -5.1rem; // fixed navbar correction
797 749ca4c4 Marek Lovčí
    min-height: 100vh;
798
    display: flex;
799
    align-items: center;
800
}
801
802
.error {
803
    color: $theme-color-one;
804
    font-size: xx-large;
805
    display: block;
806
    text-align: center;
807
}
808
809 d79e27be Marek Lovčí
// login and registration alert bottom margin
810
.al {
811
    margin-bottom: 3rem;
812
}
813
814 1c3121fe zabran
@media screen and (max-height: 450px) {
815 d79e27be Marek Lovčí
    .sidenav a {
816
        font-size: 18px;
817
    }
818 54610fab zabran
    .down {
819
        bottom: unset;
820
        margin-bottom: unset;
821
    }
822 1c3121fe zabran
}
823
824 d79e27be Marek Lovčí
@media (max-width: 990px) {
825
}
826 8075a85b zabran
827
@media (max-width: 770px) {
828 aee27358 zabran
}
829
830 d79e27be Marek Lovčí
@media only screen and (max-width: 540px) {
831
    .sidenav {
832 b711d297 zabran
        width: 0;
833
    }
834 d79e27be Marek Lovčí
    .head-title.text-center h1 {
835 6c518068 rizir01
        font-size: 23pt;
836
        padding-top: 50pt;
837
        white-space: nowrap;
838 79e22cad zabran
    }
839
    .logo-kaplicky{
840
        width: 100%;
841
        display: block;
842
    }
843
    .arrow {
844
        position: absolute;
845
        width: 0;
846
        height: 0;
847
        margin: 2rem;
848
        cursor: pointer;
849
        border: 0.59055rem solid transparent;
850
        &:active, &.active, &:focus{
851
            outline: none;
852
            box-shadow: none;
853
        }
854
    }
855
    .arrow-left {
856
        margin-left: 80%;
857 6c518068 rizir01
858 79e22cad zabran
        border-right: 0.59055rem solid $theme-color-five;
859
        background-color: $theme-color-four !important;
860 34c0b905 rizir01
    }
861 79e22cad zabran
    .arrow-right {
862
        border-left: 0.59055rem solid $theme-color-four;
863
864
        position: fixed;
865
        z-index: 3;
866
        top: 0;
867
        left: 0;
868
    }
869
    .bar-desktop{
870
        display: none;
871
    }
872
    .menu-item:active, .menu-item.active{
873
        color: $theme-color-five;
874
        background-color: $theme-color-one;
875
    }
876
877 34c0b905 rizir01
878 c0265e9e zabran
    /*.btn-circle.rounded-circle.btn-sm
879 34c0b905 rizir01
    {
880
        width: 90px;
881
        height: 90px;
882
    }
883
884
    .btn-circle.rounded-circle.btn-dm
885
    {
886
        width: 130px;
887
        height: 130px;
888
    }
889
890
    .btn-circle.rounded-circle.btn-xl
891
    {
892
        width: 180px;
893
        height: 180px;
894 c0265e9e zabran
    }*/
895 d668e889 Adam Mištera
896 d79e27be Marek Lovčí
    body {
897 d668e889 Adam Mištera
        .carousel {
898
            .carousel-inner {
899
                .social-logo {
900
                    padding-left: 30px;
901
                    top: 20%;
902
                }
903
            }
904
        }
905
    }
906
}
907
908 d79e27be Marek Lovčí
@media (min-width: 330px) and (max-height: 900px) {
909
    body {
910 d668e889 Adam Mištera
        .carousel {
911
            .carousel-inner {
912
                .social-logo {
913
                    top: 25%;
914
                }
915
            }
916
        }
917
    }
918
}
919 f5ea2a43 Adam Mištera
920
@media (min-width: 1024px) {
921
922
    body {
923
        .kaplicky{
924
            text-align: left !important;
925
            font-size: 24pt;
926
            line-height: 24pt;
927
        }
928
929
        .text {
930
            text-align: left;
931
            font-size: 18pt;
932
            line-height: 26pt;
933
        }
934
935
        .carousel {
936
            .carousel-inner {
937
                .social-logo {
938
                    justify-content: center;
939
                    top: 90%;
940
941
                    .logo {
942
                        margin-left: 10rem;
943
944
                        img {
945
                            width: 3.125rem;
946
                        }
947
948
                        &:first-child {
949
                            margin-left: 0;
950
                        }
951
                    }
952
                }
953
                .carousel-button {
954
                    transform: none;
955
                    left: 76%;
956
                    bottom: 20%;
957
                }
958
            }
959
960
            .carousel-caption{
961
                padding: 3.75rem 6.25rem 10em;
962
963
                h2 {
964
                    margin-bottom: 1rem;
965
                }
966
            }
967
        }
968
969
        .button-square {
970
            font-size: 18pt;
971
            width: 10.875rem;
972
            height: 2.938rem;
973
        }
974
    }
975
}