Projekt

Obecné

Profil

Stáhnout (31.8 KB) Statistiky
| Větev: | Tag: | Revize:
1
// Variables
2
@import 'variables';
3

    
4
body {
5
    background-color: $theme-color-five;
6
    font-family: $font-family-one;
7
    padding-top: 5.1rem;
8

    
9
    .head-title h1 {
10
        color: $theme-color-one;
11
        font-weight: $font-weight-one;
12
        font-size: 60pt;
13
        //font-weight: bold;
14
        letter-spacing: 3px;
15
    }
16

    
17
    .carousel {
18
        margin-top: - 5.1rem;
19

    
20
        .carousel-inner {
21
            .museum-logo {
22
                display: flex;
23
                justify-content: center;
24
                position: absolute;
25
                top: 5%;
26
                width: 100%;
27
                z-index: 1;
28

    
29
                img {
30
                    width: 7.5rem;
31
                }
32
            }
33

    
34
            .social-logo {
35
                text-align: center;
36
                justify-content: space-around;
37
                flex-wrap: nowrap;
38
                position: absolute;
39
                top: 25%;
40
                padding-left: 25px;
41
                width: 100%;
42
                z-index: 1;
43

    
44
                img {
45
                    width: 2.0625rem;
46
                }
47
            }
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
            }
66
        }
67

    
68
        .carousel-caption {
69
            top: 50%;
70
            bottom: auto;
71
            padding-left: 1rem;
72
            padding-right: 1rem;
73
            transform: translateY(-50%);
74
            background-color: rgba(239, 218, 179, 0.5);
75
        }
76
    }
77

    
78
    /////////text types
79
    //většina běžných textů
80
    .text {
81
        font-weight: $font-weight-one;
82
        font-size: 8pt;
83
        line-height: 9pt;
84
    }
85

    
86
    //text inputu a název artefaktů
87
    .text2 {
88
        font-weight: $font-weight-two;
89
        font-size: 8pt;
90
    }
91

    
92
    //název "kaplicky" a "choose a few" v categories (tam má jinou barvu)
93
    .kaplicky {
94
        color: $theme-color-one;
95
        font-size: 11pt;
96
        font-weight: $font-weight-three;
97
        letter-spacing: 3pt;
98
    }
99

    
100
    //autor artefaktu
101
    .text-author {
102
        font-weight: $font-weight-one;
103
        font-size: 7pt;
104
        color: $theme-color-four;
105
    }
106

    
107
    //počet lajků
108
    .text-number {
109
        font-weight: $font-weight-two;
110
        font-size: 5pt;
111
        color: $theme-color-four;
112
    }
113

    
114
    //notes u metadat, about v about, text levého menu
115
    .text-headline {
116
        font-weight: $font-weight-two;
117
        font-size: 12pt;
118
        color: $theme-color-four;
119
    }
120

    
121
    //notes u metadat, about v about, text levého menu
122
    .text-headline-desktop {
123
        font-weight: $font-weight-two;
124
        font-size: 24pt;
125
        color: $theme-color-four;
126
    }
127

    
128
    //název metadata, text pravého menu
129
    .text-page {
130
        font-weight: $font-weight-two;
131
        font-size: 7pt;
132
    }
133

    
134
    ////color pro změnu jen barvy
135
    .black {
136
        color: $theme-color-five;
137
    }
138

    
139
    .white {
140
        color: $theme-color-one;
141
    }
142

    
143
    .colored {
144
        color: $theme-color-four;
145
    }
146

    
147

    
148
    ////login
149
    .auth {
150
        .card {
151
            border: none;
152
            text-align: center;
153
            font-size: 8pt;
154
        }
155

    
156
        .col-form-label {
157
            text-align: left;
158
            padding-top: 0;
159
            padding-bottom: 0;
160
        }
161

    
162
        .form-control {
163
            padding: 0;
164
            height: 17pt;
165
            border-radius: 0;
166

    
167
            &:focus {
168
                //border-color: $theme-color-one;
169
                border-top-color: $theme-color-five;
170
                border-left-color: $theme-color-five;
171
                border-right-color: $theme-color-five;
172
                border-bottom-color: 0.5pt $theme-color-one;
173
                -webkit-box-shadow: none;
174
                box-shadow: none;
175
            }
176
        }
177
    }
178

    
179
    //Oprava barev pro Chrom
180
    input:-webkit-autofill {
181
        -webkit-box-shadow: 0 0 0 50px $theme-color-five inset !important;
182
        -webkit-text-fill-color: $theme-color-one;
183
        background-color: $theme-color-five !important;
184
        //outline: none !important;
185
        &:active, &:focus, &:visited, &:hover {
186
            -webkit-box-shadow: 0 0 0 50px $theme-color-five inset !important;
187
            -webkit-text-fill-color: $theme-color-one;
188
            background-color: $theme-color-five !important;
189
            //outline: none !important;
190
        }
191
    }
192

    
193
    .card-body {
194
        background-color: $theme-color-five;
195
        font-weight: $font-weight-one;
196
        color: $theme-color-four;
197
    }
198

    
199
    .form-control {
200
        background-color: $theme-color-five;
201
        margin-top: -1px;
202
        border-top-color: $theme-color-five;
203
        border-left-color: $theme-color-five;
204
        border-right-color: $theme-color-five;
205
        border-bottom-color: 0.5pt $theme-color-one;
206
        color: $theme-color-one;
207
        box-shadow: none;
208
        font-size: 8pt;
209
        outline: none;
210

    
211
        &:active, &:focus, &:visited, &:hover {
212
            outline: none;
213
            background-color: $theme-color-five;
214
            margin-top: -1px;
215
            border-top-color: $theme-color-five;
216
            border-left-color: $theme-color-five;
217
            border-right-color: $theme-color-five;
218
            border-bottom-color: 0.5pt $theme-color-one;
219
            color: $theme-color-one;
220
            box-shadow: none;
221
        }
222

    
223
    }
224

    
225
    .form-control.is-invalid {
226
        box-shadow: none;
227
        border-color: $theme-color-four;
228
        background-image: none;
229

    
230
        &:active, &:focus, &:visited {
231
            box-shadow: none;
232
            border-color: $theme-color-four;
233
        }
234
    }
235

    
236
    .button-square {
237
        font-size: 8pt;
238
        background-color: $theme-color-five;
239
        color: $theme-color-one;
240
        border: 0.5pt solid $theme-color-one;
241
        border-radius: 0;
242
        padding: 0.4675rem 2.475rem;
243
        font-weight: $font-weight-one;
244

    
245
        &:active, &:focus, &:visited, &:hover {
246
            outline: none;
247
            box-shadow: none;
248
            color: $theme-color-one;
249
        }
250

    
251
        &:hover {
252
            color: $theme-color-four;
253
        }
254
    }
255

    
256
    //spendlik
257
    .pin-left:before {
258
        content: '';
259
        position: relative;
260
        height: 0.35433rem;
261
        width: 0.35433rem;
262
        background-color: $theme-color-one;
263
        border-radius: 50%;
264
        display: inline-block;
265
        top: -0.35433rem;
266
        left: -0.2rem;
267
    }
268

    
269
    .pin-left {
270
        border-left: .5pt solid $theme-color-four;
271
        position: fixed;
272
        bottom: 0;
273
        text-align: left;
274

    
275
        // center fixed div
276
        left: 50%;
277
        transform: translateX(-50%);
278
        width: 70%;
279

    
280
        .text {
281
            margin-left: 0.5rem;
282
            margin-bottom: 0.2rem; // looks fugly without margin
283
        }
284

    
285
        p {
286
            margin-top: 0;
287
            margin-bottom: 0;
288
        }
289
    }
290

    
291
    li {
292
        list-style-type: none;
293
    }
294

    
295
    .button-image {
296
        background-color: transparent;
297
        border-color: transparent;
298

    
299
        &:before {
300
            content: "";
301
            width: 100px;
302
            height: 100px;
303
            display: inline-block;
304
            margin-right: 5px;
305
            vertical-align: text-top;
306
            background-color: transparent;
307
            background-position: center center;
308
            background-repeat: no-repeat;
309
        }
310
    }
311

    
312
    .fav-cat-mybooks {
313
        color: $theme-color-two;
314
        text-align: center;
315
        font-size: 1.9rem;
316
    }
317

    
318
    .fav-cat-nofav {
319
        text-align: center;
320
        color: $theme-color-three;
321
        background-color: $theme-color-five;
322
        border-color: $theme-color-three;
323
    }
324

    
325
    .artefacts-area, .artefact-area {
326

    
327
        h5 {
328
            color: $theme-color-two;
329
            //font-weight: $font-weight-two;
330
            text-overflow: ellipsis;
331
            overflow: hidden;
332
            white-space: nowrap;
333
            line-height: 0.9rem;
334
            font-size: 1.1rem;
335
        }
336

    
337
        h6 {
338
            color: $theme-color-two;
339
            font-size: 0.9rem;
340
            //font-weight: lighter;
341
            font-weight: $font-weight-one;
342
        }
343

    
344
        img {
345
            border: transparent;
346
            border-radius: 1px;
347
        }
348

    
349
        .card {
350
            margin: 10px;
351
            border: none !important;
352
        }
353

    
354
        .left_panel_info {
355
            margin-top: 15px;
356
            max-width: 70%; //250px
357
        }
358

    
359
        .right_panel_info {
360
            margin-top: 15px;
361
        }
362

    
363
        .likes_text {
364
            text-align: center;
365
        }
366

    
367
        .card-cus-bottom {
368
            background-color: $theme-color-five;
369
            padding-right: 0;
370
            padding-left: 0;
371
        }
372

    
373
        .inter_info {
374
            &:before {
375
                //background-image: url(../images/interface/Button_Info_50.png);
376
                background-image: url(../images/interface/Button_Info.svg);
377
                //width: 60px;
378
                //height: 60px;
379
                width: 8vw;
380
                height: 8vw;
381
            }
382
        }
383

    
384
        .inter_like {
385
            display: none;
386

    
387
            &:before {
388
                //background-image: url(../images/interface/Hearth_Empty_50.png);
389
                background-image: url(../images/interface/Heart_Empty.svg);
390
                //width: 60px;
391
                //height: 60px;
392
                width: 8vw;
393
                height: 8vw;
394
            }
395
        }
396

    
397
        .inter_like_filled {
398
            &:before {
399
                //background-image: url(../images/interface/Hearth_Filled_50.png);
400
                background-image: url(../images/interface/Heart_Filled.svg);
401
                //width: 60px;
402
                //height: 60px;
403
                width: 8vw;
404
                height: 8vw;
405
            }
406
        }
407

    
408
        .inter_info, .inter_like, .inter_like_filled {
409
            padding: 0;
410

    
411
            &:focus, &:active, &:hover {
412
                background-color: transparent !important;
413
                border-color: transparent !important;
414
                outline: none !important;
415
                box-shadow: none !important;
416
            }
417
        ;
418
        }
419
    }
420

    
421
    // Artefact area
422
    .artefact-area {
423

    
424
        .card-cus-bottom {
425
            .left_panel_info, .right_panel_info {
426
                margin: 0.9375rem 0 0 0;
427
            }
428

    
429
            .right_panel_info {
430
                .float-right {
431
                    margin-right: -0.35rem;
432
                }
433
            }
434
        }
435

    
436
        .artefact-name {
437
            font-weight: $font-weight-two;
438
            font-size: 8pt;
439
            line-height: 10pt;
440
            margin-bottom: 0;
441
        }
442

    
443
        .artefact-author {
444
            font-size: 7pt;
445
            line-height: 8pt;
446
        }
447

    
448
        .inter_like {
449
            display: block;
450

    
451
            &:before {
452
                background-image: url(../images/interface/Heart_Empty.svg);
453
                width: 1.563rem;
454
                height: 1.25rem;
455

    
456
            }
457
        }
458

    
459
        .inter_like_filled {
460
            &:before {
461
                background-image: url(../images/interface/Heart_Filled.svg);
462
                width: 1.563rem;
463
                height: 1.25rem;
464
            }
465
        }
466

    
467
        .inter_info {
468

    
469
            padding-right: 1rem;
470

    
471
            &:before {
472
                background-image: url(../images/interface/Button_Info.svg);
473
                width: 1.875rem;
474
                height: 1.875rem;
475
            }
476
        }
477

    
478
        .artefact-likes {
479
            font-weight: $font-weight-two;
480
            font-size: 5pt;
481
            padding-right: 0.25rem;
482
        }
483
    }
484

    
485
    // Metadata area
486
    .metadata-area {
487

    
488
        h2 {
489
            color: $theme-color-two;
490
            font-weight: $font-weight-two;
491
            font-size: 12pt;
492
        }
493

    
494
        .arrow-down {
495
            position: fixed;
496
            top: 0.25rem;
497
            right: 0;
498
            margin: 2rem;
499
            width: 0;
500
            height: 0;
501
            border-left: 0.59055rem solid transparent;
502
            border-right: 0.59055rem solid transparent;
503
            border-top: 0.59055rem solid $theme-color-two;
504
        }
505

    
506
        .pin-horizontal {
507
            color: $theme-color-two;
508
            border-bottom: .042rem solid $theme-color-two;
509
            display: inline-block;
510
            margin: 2.75rem 3.125rem 0 0;
511

    
512
            &:after {
513
                content: '';
514
                background-color: #ddd1b9;
515
                position: relative;
516
                height: .5rem;
517
                width: .5rem;
518
                border-radius: 50%;
519
                display: block;
520
                margin-left: auto;
521
                top: .25rem;
522
            }
523

    
524
            .metadata {
525
                position: relative;
526
                display: flex;
527
                align-items: baseline;
528

    
529
                span {
530
                    font-weight: $font-weight-two;
531
                }
532

    
533
                .arrow-down {
534
                    position: relative;
535
                    top: 0;
536
                    right: 0;
537
                    width: 0;
538
                    height: 0;
539
                    border-left: 0.25rem solid transparent;
540
                    border-right: 0.25rem solid transparent;
541
                    border-top: 0.25rem solid $theme-color-two;
542
                    margin: 0 0.5rem 0 0.5rem;
543
                }
544
            }
545
        }
546

    
547
        .white-pin {
548
            color: $theme-color-one;
549
            border-bottom: .042rem solid $theme-color-one;
550

    
551
            &:before {
552
                content: '';
553
                background-color: $theme-color-one;
554
            }
555

    
556
            .metadata {
557
                .arrow-down {
558
                    border-top: 0.25rem solid $theme-color-one;
559
                }
560
            }
561
        }
562

    
563
        .metadata-text {
564
            font-size: 8pt;
565
            color: $theme-color-one;
566
            padding-top: 10px;
567
            padding-left: 25px;
568
            padding-right: 25px;
569

    
570
            .artefact-info {
571
                color: $theme-color-two;
572
                margin-top: 10px;
573

    
574
                .artefact-name {
575
                    font-weight: $font-weight-two;
576
                    font-size: 8pt;
577
                }
578

    
579
                .artefact-author {
580
                    font-weight: $font-weight-one;
581
                    font-size: 7pt;
582
                }
583

    
584
                .inter_like {
585

    
586
                    &:before {
587
                        background-image: url(../images/interface/Heart_Empty.svg);
588
                        width: 3.125rem;
589
                        height: 3.125rem;
590
                        margin-right: 0;
591
                    }
592

    
593
                    &:hover, &:focus, &:active {
594
                        background-color: transparent !important;
595
                        border-color: transparent !important;
596
                        outline: none !important;
597
                        box-shadow: none !important;
598
                    }
599
                }
600

    
601
                .inter_like_filled {
602

    
603
                    &:before {
604
                        background-image: url(../images/interface/Heart_Filled.svg);
605
                        width: 3.125rem;
606
                        height: 3.125rem;
607
                        margin-right: 0;
608
                    }
609

    
610
                    &:hover, &:focus, &:active {
611
                        background-color: transparent !important;
612
                        border-color: transparent !important;
613
                        outline: none !important;
614
                        box-shadow: none !important;
615
                    }
616
                }
617
            }
618
        }
619
    }
620

    
621
    // Modal
622
    .modal {
623
        font-weight: $font-weight-one;
624
        color: $theme-color-two;
625
        font-size: 8pt;
626

    
627
        .modal-header {
628
            border-bottom: 1px solid $theme-color-two;
629

    
630
            .close {
631
                color: $theme-color-two;
632
                text-shadow: none;
633
            }
634
        }
635

    
636
        .modal-content {
637
            background-color: $theme-color-five;
638
        }
639

    
640
        .modal-footer {
641
            border-top: 1px solid $theme-color-two;
642

    
643
            .btn {
644
                background-color: $theme-color-two;
645
                color: $theme-color-five;
646

    
647
            }
648
        }
649
    }
650

    
651
    .image-modal {
652
        .close {
653
            font-size: 24pt;
654
            color: $theme-color-two;
655
            text-shadow: none;
656
            position: absolute;
657
            top: 1rem;
658
            right: 0.125rem;
659
            opacity: 1;
660
            cursor: pointer;
661
            pointer-events: initial;
662
        }
663
    }
664

    
665
    /*.content {
666
        position: relative;
667

    
668
        //Circle style button
669
        .btn-circle.rounded-circle {
670
            padding: 6px 0px;
671
            font-size: 16px;
672
            text-align: center;
673
        }
674
        .btn-categories
675
        {
676
            position: absolute;
677
            border-width: 5px;
678
            background-color: $theme-color-five;
679
            border-color: $theme-color-four;
680
            color:$theme-color-four;
681
            outline: none !important;
682
            box-shadow: none !important;
683
            font-weight: $font-weight-two;
684

    
685
            &:active
686
            {
687
                background-color: $theme-color-three;
688
                border-color: $theme-color-four;
689
                outline: none !important;
690
                box-shadow: none !important;
691
                color:$theme-color-five;
692
            }
693
        }
694
    }*/
695

    
696
    //CATEGORIES - TILES
697
    .btn.btn-dark.cat-tile {
698
        //STYLING
699
        border-color: $theme-color-four;
700
        border-radius: 0;
701
        border-style: solid;
702
        border-width: 2px;
703
        color: $theme-color-four;
704
        background-color: $theme-color-five;
705
        text-align: center;
706
        outline: none !important;
707
        box-shadow: none !important;
708

    
709
        //TEXT OVERFLOW
710
        overflow: hidden;
711
        text-overflow: ellipsis;
712

    
713
        //FONT
714
        font-size: 22pt;
715

    
716
        //SPACING
717
        padding: 4rem 1rem;
718

    
719
        &:active, &:focus {
720
            background-color: $theme-color-three;
721
            border-color: $theme-color-four;
722
            outline: none !important;
723
            box-shadow: none !important;
724
            color: $theme-color-five;
725
        }
726
    }
727

    
728
    .btn-dark:not(:disabled):not(.disabled).active{
729
        background-color: $theme-color-four;
730
        color:white;
731
        border-color: $theme-color-five;
732
    }
733

    
734
    //CATEGORY/{id} -h2 title NO ARTEFACTS
735
    .category-h2 {
736
        color: $theme-color-four;
737
    }
738

    
739
    //CATEGORIES - Choose a topic TITLE
740
    .head-title.text-center.cat-main-topic {
741

    
742
        h1 {
743
            font-size: 1.9rem;
744
        }
745
    }
746

    
747
    //CATEGORIES - Main menu
748
    .cat-main-menu{
749
        font-size: 1.75rem;
750
        text-align: center;
751
        margin-bottom: 30pt;
752

    
753
        a,a:visited{
754
            color: $theme-color-two;
755
            text-decoration: none;
756
        }
757

    
758
        a:hover{
759
            color: $theme-color-four;
760
        }
761

    
762
    }
763

    
764
    //CATEGORIES - Wrapper around Enter button
765
    .cat-wrapper{
766
        margin:auto;
767
        display:block;
768
        //align-content: center;
769
        //margin:auto;
770
        //display:block;
771
    }
772

    
773
    //CATEGORIES - Enter button
774
    .btn.button-square.cat-enter-butt {
775
        font-size: 8pt;
776
        background-color: grey;
777
        color: $theme-color-one;
778
        border: 0.5pt solid $theme-color-one;
779
        border-radius: 0;
780
        bottom: 5%;
781
        position: fixed;
782
        left: 50%;
783
        transform: translateX(-50%);
784
        width: 6.5rem;
785
        height: 2rem;
786
        font-weight: $font-weight-one;
787

    
788
        &:active, &:focus, &:visited, &:hover {
789
            outline: none;
790
            box-shadow: none;
791
            color: $theme-color-one;
792
        }
793

    
794
        &:hover {
795
            color: $theme-color-four;
796
        }
797
    }
798

    
799
    //VERIFY - main text
800
    .ver-text{
801

    
802
        margin-top: 20pt    ;
803

    
804
        h2{
805
            text-align: center;
806
            color:$theme-color-two;
807
        }
808
    }
809
}
810

    
811
.top-bar {
812
    background-color: $theme-color-five;
813
    min-height: 5rem;
814
    position: fixed;
815
    width: 100%;
816
    top: 0;
817
    z-index: 2;
818

    
819
    .shadow {
820
        box-shadow: none;
821
    }
822
}
823

    
824
.sidenav {
825
    height: 100%;
826
    width: 0;
827
    //width: 250px;
828
    position: fixed;
829
    z-index: 4;
830
    top: 0;
831
    left: 0;
832
    background-color: $theme-color-four;
833
    overflow-x: hidden;
834
    transition: 0.5s;
835
}
836

    
837
.sidenav a {
838
    text-decoration: none;
839
    color: $theme-color-five;
840
    display: block;
841
    transition: 0.3s;
842

    
843
    &:hover {
844
        color: $theme-color-four;
845
        background-color: $theme-color-one;
846
    }
847

    
848
    &:active, &:focus, .active {
849
        color: $theme-color-one;
850
        background-color: $theme-color-four;
851
    }
852
}
853

    
854
.bar-desktop {
855
    display: flex;
856
    align-items: center;
857
    text-align: center;
858
    min-width: 100%;
859
    padding-top: 2rem;
860
    padding-bottom: 2rem;
861
}
862

    
863
.down {
864
    position: absolute;
865
    z-index: 5;
866
    bottom: 0;
867
    left: 0;
868
    width: 100%;
869
    margin-bottom: 3rem;
870
}
871

    
872
.menu-item {
873
    padding: 0.25rem 1rem;
874
    width: 100%;
875
    border: 0;
876

    
877
    &:active, &.active, &:focus {
878
        color: $theme-color-one;
879
        //background-color: $theme-color-five;
880
        border: none;
881
        outline: none;
882
        box-shadow: none;
883
    }
884
}
885

    
886
.logo-kaplicky {
887
    text-align: center;
888
    display: none;
889

    
890
    &:active, &.active, &:focus {
891
        outline: none;
892
        box-shadow: none;
893
    }
894
}
895

    
896
.navbar {
897
    padding: unset;
898
}
899

    
900
.vertical-center {
901
    margin-top: -5.1rem; // fixed navbar correction
902
    min-height: 100vh;
903
    display: flex;
904
    align-items: center;
905
}
906

    
907
.error {
908
    color: $theme-color-one;
909
    font-size: xx-large;
910
    display: block;
911
    text-align: center;
912
}
913

    
914
// login and registration alert bottom margin
915
.al {
916
    margin-bottom: 3rem;
917
}
918

    
919
.js-cookie-consent {
920
    position: fixed;
921
    z-index: 9999;
922
    text-align: center;
923
    width: 100%;
924
    bottom: 0px;
925
    padding: 10px;
926
    background: $theme-color-four;
927
}
928

    
929
.js-cookie-consent-agree {
930
    font-size: 8pt;
931
    background-color: $theme-color-five;
932
    color: $theme-color-one;
933
    border: 0.5pt solid $theme-color-one;
934
    border-radius: 0;
935
    padding: 0.5rem 2rem;
936
    font-weight: $font-weight-one;
937

    
938
    &:active, &:focus, &:visited, &:hover {
939
        outline: none;
940
        box-shadow: none;
941
        color: $theme-color-one;
942
    }
943

    
944
    &:hover {
945
        color: $theme-color-four;
946
    }
947
}
948

    
949
.cookie-consent__message {
950
    padding: 1rem;
951
    display: inline-block;
952
}
953

    
954
// books component
955
.books-component {
956

    
957
    .book-area {
958
        .card-cus-bottom {
959

    
960
            display: flex;
961
            justify-content: space-between;
962
            align-items: baseline;
963

    
964
            .book-arrow {
965
                &:after {
966
                    content: '';
967
                    bottom: 3rem;
968
                    position: absolute;
969
                    border-top: 1.25rem solid transparent;
970
                    border-bottom: 1.25rem solid transparent;
971
                }
972
            }
973

    
974
            .book-arrow-left {
975
                &:after {
976
                    left: 25%;
977
                    border-right: 1.25rem solid $theme-color-two;
978
                }
979
            }
980

    
981
            .book-arrow-right {
982
                &:after {
983
                    right: 25%;
984
                    border-left: 1.25rem solid $theme-color-two;
985
                }
986
            }
987

    
988
            .likes {
989
                display: flex;
990
                flex-direction: column;
991
                align-items: center;
992

    
993
                .inter_like, .inter_like_filled {
994
                    margin: 0 auto;
995

    
996
                    &:before {
997
                        margin-right: 0;
998
                        height: 5rem;
999
                        width: 5rem;
1000
                    }
1001
                }
1002

    
1003
                .artefact-likes {
1004
                    font-size: 12pt;
1005
                    padding: 0;
1006
                }
1007
            }
1008
        }
1009
    }
1010

    
1011
    .info-area {
1012
        color: $theme-color-two;
1013
        margin-top: 0.625rem;
1014
        padding-left: 5rem;
1015

    
1016
        /* could be use to hide overflowing notes
1017
        max-height: 80vh;
1018
        overflow-y: scroll;
1019
        scrollbar-width: none;
1020
        -ms-overflow-style: none;
1021

    
1022
        &::-webkit-scrollbar {
1023
            width: 0 !important
1024
        } */
1025

    
1026
        h3 {
1027
            font-weight: $font-weight-two;
1028
        }
1029

    
1030
        .switch-view {
1031
            float: right;
1032
            color: $theme-color-one;
1033
            cursor: pointer;
1034
        }
1035

    
1036
        .artefact-notes {
1037
            display: none;
1038
            color: $theme-color-two;
1039

    
1040
            .pin-horizontal {
1041
                border-bottom: .042rem solid $theme-color-two;
1042
                display: inline-block;
1043
                margin: 2.75rem 2rem 0 0;
1044

    
1045
                &:after {
1046
                    content: '';
1047
                    background-color: #ddd1b9;
1048
                    position: relative;
1049
                    height: .5rem;
1050
                    width: .5rem;
1051
                    border-radius: 50%;
1052
                    display: block;
1053
                    margin-left: auto;
1054
                    top: .25rem;
1055
                }
1056

    
1057
                .metadata {
1058
                    position: relative;
1059
                    display: flex;
1060
                    align-items: baseline;
1061

    
1062
                    span {
1063
                        font-size: 12pt;
1064
                        font-weight: $font-weight-two;
1065
                    }
1066

    
1067
                    .arrow-down {
1068
                        position: relative;
1069
                        top: 0;
1070
                        right: 0;
1071
                        width: 0;
1072
                        height: 0;
1073
                        border-left: 0.25rem solid transparent;
1074
                        border-right: 0.25rem solid transparent;
1075
                        border-top: 0.25rem solid $theme-color-two;
1076
                        margin: 0 0.5rem 0 0.5rem;
1077
                    }
1078
                }
1079
            }
1080

    
1081
            .white-pin {
1082
                color: $theme-color-one;
1083
                border-bottom: .042rem solid $theme-color-one;
1084

    
1085
                &:before {
1086
                    content: '';
1087
                    background-color: $theme-color-one;
1088
                }
1089

    
1090
                .metadata {
1091
                    .arrow-down {
1092
                        border-top: 0.25rem solid $theme-color-one;
1093
                    }
1094
                }
1095
            }
1096

    
1097
            .metadata-text {
1098
                font-size: 12pt;
1099
                color: $theme-color-one;
1100
                padding-top: 10px;
1101
                padding-left: 25px;
1102
                padding-right: 25px;
1103

    
1104
                .inter_like {
1105

    
1106
                    &:before {
1107
                        background-image: url(../images/interface/Heart_Empty.svg);
1108
                        width: 5rem;
1109
                        height: 5rem;
1110
                    }
1111

    
1112
                    &:hover, &:focus, &:active {
1113
                        background-color: transparent !important;
1114
                        border-color: transparent !important;
1115
                        outline: none !important;
1116
                        box-shadow: none !important;
1117
                    }
1118
                }
1119

    
1120
                .inter_like_filled {
1121

    
1122
                    &:before {
1123
                        background-image: url(../images/interface/Heart_Filled.svg);
1124
                        width: 5rem;
1125
                        height: 5rem;
1126
                    }
1127

    
1128
                    &:hover, &:focus, &:active {
1129
                        background-color: transparent !important;
1130
                        border-color: transparent !important;
1131
                        outline: none !important;
1132
                        box-shadow: none !important;
1133
                    }
1134
                }
1135
            }
1136
        }
1137

    
1138
        .inter_info {
1139

    
1140
            float: right;
1141
            color: $theme-color-one;
1142
            padding-right: 1rem;
1143

    
1144
            &:before {
1145
                background-image: url(../images/interface/Button_Info_White.svg);
1146
                width: 1.875rem;
1147
                height: 1.875rem;
1148
            }
1149

    
1150
            &:hover, &:focus, &:active {
1151
                background-color: transparent !important;
1152
                border-color: transparent !important;
1153
                outline: none !important;
1154
                box-shadow: none !important;
1155
            }
1156
        }
1157
    }
1158
}
1159

    
1160
@media (max-width: 610px) {
1161
    .js-cookie-consent-agree {
1162
        margin-bottom: 1rem;
1163
    }
1164
}
1165

    
1166
@media screen and (max-height: 450px) {
1167
    .sidenav a {
1168
        font-size: 18px;
1169
    }
1170
    .down {
1171
        bottom: unset;
1172
        margin-bottom: unset;
1173
    }
1174
}
1175

    
1176
@media (min-width: 1300px) {
1177
    .bar-desktop {
1178
        margin-left: 8vw;
1179
        margin-right: 8vw;
1180
        min-width: 84vw;
1181
    }
1182
}
1183

    
1184
@media (max-width: 990px) {
1185
}
1186

    
1187
@media (max-width: 770px) {
1188
    .logo-kaplicky {
1189
        margin: 0 auto;
1190
        display: block;
1191
    }
1192
    .arrow {
1193
        position: absolute;
1194
        width: 0;
1195
        height: 0;
1196
        margin: 2rem;
1197
        cursor: pointer;
1198
        border: 0.59055rem solid transparent;
1199

    
1200
        &:active, &.active, &:focus {
1201
            outline: none;
1202
            box-shadow: none;
1203
        }
1204
    }
1205
    .arrow-left {
1206
        margin-left: 80%;
1207

    
1208
        border-right: 0.59055rem solid $theme-color-five;
1209
        background-color: $theme-color-four !important;
1210
    }
1211
    .arrow-right {
1212
        border-left: 0.59055rem solid $theme-color-four;
1213

    
1214
        position: fixed;
1215
        z-index: 3;
1216
        top: 0;
1217
        left: 0;
1218
    }
1219
    .bar-desktop {
1220
        display: none;
1221
    }
1222
    .menu-item:active, .menu-item.active {
1223
        color: $theme-color-five;
1224
        background-color: $theme-color-one;
1225
    }
1226
    .books-component {
1227
        .info-area {
1228
            padding-left: 1.5625rem;
1229
        }
1230
    }
1231
}
1232

    
1233
@media only screen and (max-width: 540px) {
1234
    .sidenav {
1235
        width: 0;
1236
    }
1237
    .head-title.text-center h1 {
1238
        font-size: 23pt;
1239
        padding-top: 50pt;
1240
        white-space: nowrap;
1241
    }
1242

    
1243

    
1244
    /*.btn-circle.rounded-circle.btn-sm
1245
    {
1246
        width: 90px;
1247
        height: 90px;
1248
    }
1249

    
1250
    .btn-circle.rounded-circle.btn-dm
1251
    {
1252
        width: 130px;
1253
        height: 130px;
1254
    }
1255

    
1256
    .btn-circle.rounded-circle.btn-xl
1257
    {
1258
        width: 180px;
1259
        height: 180px;
1260
    }*/
1261

    
1262
    body {
1263
        .carousel {
1264
            .carousel-inner {
1265
                .social-logo {
1266
                    padding-left: 30px;
1267
                    top: 20%;
1268
                }
1269
            }
1270
        }
1271
    }
1272
}
1273

    
1274
@media (min-width: 330px) and (max-height: 900px) {
1275
    body {
1276
        .carousel {
1277
            .carousel-inner {
1278
                .social-logo {
1279
                    top: 25%;
1280
                }
1281
            }
1282
        }
1283
    }
1284
}
1285

    
1286
@media (min-width: 1024px) {
1287

    
1288
    body {
1289
        .kaplicky {
1290
            text-align: left !important;
1291
            //font-size: 24pt;
1292
            font-size: 30pt;
1293
            line-height: 24pt;
1294
            margin-bottom: 3rem;
1295
            //margin-left: 1rem;
1296
        }
1297

    
1298
        .text {
1299
            text-align: left;
1300
            font-size: 18pt;
1301
            line-height: 26pt;
1302
        }
1303
        .text2 {
1304
            text-align: left;
1305
            font-size: 18pt;
1306
            line-height: 26pt;
1307
        }
1308

    
1309
        .carousel {
1310
            .carousel-inner {
1311
                .social-logo {
1312
                    justify-content: center;
1313
                    top: 90%;
1314

    
1315
                    .logo {
1316
                        margin-left: 10rem;
1317

    
1318
                        img {
1319
                            width: 3.125rem;
1320
                        }
1321

    
1322
                        &:first-child {
1323
                            margin-left: 0;
1324
                        }
1325
                    }
1326
                }
1327

    
1328
                .carousel-button {
1329
                    bottom: 15%;
1330
                }
1331
            }
1332

    
1333
            .carousel-caption {
1334
                padding: 3.75rem 6.25rem 5em;
1335

    
1336
                h2 {
1337
                    margin-bottom: 1rem;
1338
                }
1339
            }
1340
        }
1341

    
1342
        .button-square {
1343
            font-size: 18pt;
1344
            padding: 0.28125rem 3.7rem;
1345
        }
1346
    }
1347
}
1348

    
1349
@media (min-width: 1575px) {
1350
    body {
1351
        .carousel {
1352
            .carousel-inner {
1353
                .carousel-button {
1354
                    bottom: 20%;
1355
                }
1356
            }
1357
        }
1358
    }
1359
}
(1-1/3)