Projekt

Obecné

Profil

Stáhnout (33.7 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-two;
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-size: 24pt;
124
        color: $theme-color-four;
125
    }
126

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

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

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

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

    
146
    .highlight-white, .highlight-white {
147
        &:hover, &:focus, &:active {
148
            color: $theme-color-one;
149
        }
150
    }
151

    
152

    
153
    ////login
154
    .auth {
155
        .card {
156
            border: none;
157
            text-align: center;
158
            font-size: 8pt;
159
        }
160

    
161
        .col-form-label {
162
            text-align: left;
163
            padding-top: 0;
164
            padding-bottom: 0;
165
        }
166

    
167
        .form-control {
168
            padding: 0;
169
            height: 17pt;
170
            border-radius: 0;
171

    
172
            &:focus {
173
                //border-color: $theme-color-one;
174
                border-top-color: $theme-color-five;
175
                border-left-color: $theme-color-five;
176
                border-right-color: $theme-color-five;
177
                border-bottom-color: 0.5pt $theme-color-one;
178
                -webkit-box-shadow: none;
179
                box-shadow: none;
180
            }
181
        }
182
    }
183

    
184
    //Oprava barev pro Chrom
185
    input:-webkit-autofill {
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
        &:active, &:focus, &:visited, &:hover {
191
            -webkit-box-shadow: 0 0 0 50px $theme-color-five inset !important;
192
            -webkit-text-fill-color: $theme-color-one;
193
            background-color: $theme-color-five !important;
194
            //outline: none !important;
195
        }
196
    }
197

    
198
    .card-body {
199
        background-color: $theme-color-five;
200
        font-weight: $font-weight-one;
201
        color: $theme-color-four;
202
    }
203

    
204
    .form-control {
205
        background-color: $theme-color-five;
206
        margin-top: -1px;
207
        border-top-color: $theme-color-five;
208
        border-left-color: $theme-color-five;
209
        border-right-color: $theme-color-five;
210
        border-bottom-color: 0.5pt $theme-color-one;
211
        color: $theme-color-one;
212
        box-shadow: none;
213
        font-size: 8pt;
214
        outline: none;
215

    
216
        &:active, &:focus, &:visited, &:hover {
217
            outline: none;
218
            background-color: $theme-color-five;
219
            margin-top: -1px;
220
            border-top-color: $theme-color-five;
221
            border-left-color: $theme-color-five;
222
            border-right-color: $theme-color-five;
223
            border-bottom-color: 0.5pt $theme-color-one;
224
            color: $theme-color-one;
225
            box-shadow: none;
226
        }
227

    
228
    }
229

    
230
    .form-control.is-invalid {
231
        box-shadow: none;
232
        border-color: $theme-color-four;
233
        background-image: none;
234

    
235
        &:active, &:focus, &:visited {
236
            box-shadow: none;
237
            border-color: $theme-color-four;
238
        }
239
    }
240

    
241
    .button-square {
242
        font-size: 8pt;
243
        background-color: $theme-color-five;
244
        color: $theme-color-one;
245
        border: 0.5pt solid $theme-color-one;
246
        border-radius: 0;
247
        padding: 0.4675rem 2.475rem;
248
        font-weight: $font-weight-one;
249

    
250
        &:active, &:focus, &:visited, &:hover {
251
            outline: none;
252
            box-shadow: none;
253
            color: $theme-color-one;
254
        }
255

    
256
        &:hover {
257
            color: $theme-color-four;
258
        }
259
    }
260

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

    
274
    .pin-left {
275
        border-left: .5pt solid $theme-color-four;
276
        position: fixed;
277
        bottom: 0;
278
        text-align: left;
279

    
280
        // center fixed div
281
        left: 50%;
282
        transform: translateX(-50%);
283
        width: 70%;
284

    
285
        .text {
286
            margin-left: 0.5rem;
287
            margin-bottom: 0.2rem; // looks fugly without margin
288
        }
289

    
290
        p {
291
            margin-top: 0;
292
            margin-bottom: 0;
293
        }
294
    }
295

    
296
    li {
297
        list-style-type: none;
298
    }
299

    
300
    .button-image {
301
        background-color: transparent;
302
        border-color: transparent;
303

    
304
        &:before {
305
            content: "";
306
            width: 100px;
307
            height: 100px;
308
            display: inline-block;
309
            margin-right: 5px;
310
            vertical-align: text-top;
311
            background-color: transparent;
312
            background-position: center center;
313
            background-repeat: no-repeat;
314
        }
315
    }
316

    
317
    .fav-cat-mybooks {
318
        color: $theme-color-two;
319
        text-align: center;
320
        font-size: 1.9rem;
321
    }
322

    
323
    .fav-cat-nofav {
324
        text-align: center;
325
        color: $theme-color-three;
326
        background-color: $theme-color-five;
327
        border-color: $theme-color-three;
328
    }
329

    
330
    .artefacts-area, .artefact-area {
331

    
332
        h5 {
333
            color: $theme-color-two;
334
            //font-weight: $font-weight-two;
335
            text-overflow: ellipsis;
336
            overflow: hidden;
337
            white-space: nowrap;
338
            line-height: 0.9rem;
339
            font-size: 1.1rem;
340
        }
341

    
342
        h6 {
343
            color: $theme-color-two;
344
            font-size: 0.9rem;
345
            //font-weight: lighter;
346
            font-weight: $font-weight-one;
347
        }
348

    
349
        img {
350
            border: transparent;
351
            border-radius: 1px;
352
        }
353

    
354
        .card {
355
            margin: 10px;
356
            border: none !important;
357
        }
358

    
359
        .left_panel_info {
360
            margin-top: 15px;
361
            max-width: 70%; //250px
362
        }
363

    
364
        .right_panel_info {
365
            margin-top: 15px;
366
        }
367

    
368
        .likes_text {
369
            text-align: center;
370
        }
371

    
372
        .card-cus-bottom {
373
            background-color: $theme-color-five;
374
            padding-right: 0;
375
            padding-left: 0;
376
        }
377

    
378
        .inter_info {
379
            &:before {
380
                //background-image: url(../images/interface/Button_Info_50.png);
381
                background-image: url(../images/interface/Button_Info.svg);
382
                //width: 60px;
383
                //height: 60px;
384
                width: 8vw;
385
                height: 8vw;
386
            }
387
        }
388

    
389
        .inter_like {
390
            display: none;
391

    
392
            &:before {
393
                //background-image: url(../images/interface/Hearth_Empty_50.png);
394
                background-image: url(../images/interface/Heart_Empty.svg);
395
                //width: 60px;
396
                //height: 60px;
397
                width: 8vw;
398
                height: 8vw;
399
            }
400
        }
401

    
402
        .inter_like_filled {
403
            &:before {
404
                //background-image: url(../images/interface/Hearth_Filled_50.png);
405
                background-image: url(../images/interface/Heart_Filled.svg);
406
                //width: 60px;
407
                //height: 60px;
408
                width: 8vw;
409
                height: 8vw;
410
            }
411
        }
412

    
413
        .charts {
414
            .inter_info, .inter_like, .inter_like_filled {
415
                display: inline;
416

    
417
                &:before {
418
                    width: 3rem;
419
                    height: 3rem;
420
                }
421
            }
422

    
423
        }
424

    
425
        .inter_info, .inter_like, .inter_like_filled {
426
            padding: 0;
427

    
428
            &:focus, &:active, &:hover {
429
                background-color: transparent !important;
430
                border-color: transparent !important;
431
                outline: none !important;
432
                box-shadow: none !important;
433
            }
434
        ;
435
        }
436
    }
437

    
438
    // Artefact area
439
    .artefact-area {
440

    
441
        .card-cus-bottom {
442
            .left_panel_info, .right_panel_info {
443
                margin: 0.9375rem 0 0 0;
444
            }
445

    
446
            .right_panel_info {
447
                .float-right {
448
                    margin-right: -0.35rem;
449
                }
450
            }
451
        }
452

    
453
        .artefact-name {
454
            font-weight: $font-weight-two;
455
            font-size: 8pt;
456
            line-height: 10pt;
457
            margin-bottom: 0;
458
        }
459

    
460
        .artefact-author {
461
            font-size: 7pt;
462
            line-height: 8pt;
463
        }
464

    
465
        .inter_like {
466
            display: block;
467

    
468
            &:before {
469
                background-image: url(../images/interface/Heart_Empty.svg);
470
                width: 1.563rem;
471
                height: 1.25rem;
472

    
473
            }
474
        }
475

    
476
        .inter_like_filled {
477
            &:before {
478
                background-image: url(../images/interface/Heart_Filled.svg);
479
                width: 1.563rem;
480
                height: 1.25rem;
481
            }
482
        }
483

    
484
        .inter_info {
485

    
486
            padding-right: 1rem;
487

    
488
            &:before {
489
                background-image: url(../images/interface/Button_Info.svg);
490
                width: 1.875rem;
491
                height: 1.875rem;
492
            }
493
        }
494

    
495
        .artefact-likes {
496
            font-weight: $font-weight-two;
497
            font-size: 5pt;
498
            padding-right: 0.25rem;
499
        }
500
    }
501

    
502
    // Metadata area
503
    .metadata-area {
504

    
505
        h2 {
506
            color: $theme-color-two;
507
            font-weight: $font-weight-two;
508
            font-size: 12pt;
509
        }
510

    
511
        .arrow-down {
512
            position: fixed;
513
            top: 0.25rem;
514
            right: 0;
515
            margin: 2rem;
516
            width: 0;
517
            height: 0;
518
            border-left: 0.59055rem solid transparent;
519
            border-right: 0.59055rem solid transparent;
520
            border-top: 0.59055rem solid $theme-color-two;
521
        }
522

    
523
        .pin-horizontal {
524
            color: $theme-color-two;
525
            border-bottom: .042rem solid $theme-color-two;
526
            display: inline-block;
527
            margin: 2.75rem 3.125rem 0 0;
528

    
529
            &:after {
530
                content: '';
531
                background-color: #ddd1b9;
532
                position: relative;
533
                height: .5rem;
534
                width: .5rem;
535
                border-radius: 50%;
536
                display: block;
537
                margin-left: auto;
538
                top: .25rem;
539
            }
540

    
541
            .metadata {
542
                position: relative;
543
                display: flex;
544
                align-items: baseline;
545

    
546
                a {
547
                    color: $theme-color-two;
548
                    text-decoration: none;
549

    
550
                    span {
551
                        font-weight: $font-weight-two;
552
                    }
553
                }
554

    
555
                .arrow-down {
556
                    position: relative;
557
                    top: 0;
558
                    right: 0;
559
                    width: 0;
560
                    height: 0;
561
                    border-left: 0.25rem solid transparent;
562
                    border-right: 0.25rem solid transparent;
563
                    border-top: 0.25rem solid $theme-color-two;
564
                    margin: 0 0.5rem 0 0.5rem;
565
                }
566
            }
567
        }
568

    
569
        .white-pin {
570
            color: $theme-color-one;
571
            border-bottom: .042rem solid $theme-color-one;
572

    
573
            &:after {
574
                content: '';
575
                background-color: $theme-color-one;
576
            }
577

    
578
            .metadata {
579
                a {
580
                    color: $theme-color-one;
581
                }
582

    
583
                .arrow-down {
584
                    border-top: 0.25rem solid $theme-color-one;
585
                }
586
            }
587
        }
588

    
589
        .metadata-text {
590
            font-size: 8pt;
591
            color: $theme-color-one;
592
            padding-top: 10px;
593
            padding-left: 25px;
594
            padding-right: 25px;
595

    
596
            .artefact-info {
597
                color: $theme-color-two;
598
                margin-top: 10px;
599

    
600
                .artefact-name {
601
                    font-weight: $font-weight-two;
602
                    font-size: 8pt;
603
                }
604

    
605
                .artefact-author {
606
                    font-weight: $font-weight-one;
607
                    font-size: 7pt;
608
                }
609

    
610
                .inter_like {
611

    
612
                    &:before {
613
                        background-image: url(../images/interface/Heart_Empty.svg);
614
                        width: 3.125rem;
615
                        height: 3.125rem;
616
                        margin-right: 0;
617
                    }
618

    
619
                    &:hover, &:focus, &:active {
620
                        background-color: transparent !important;
621
                        border-color: transparent !important;
622
                        outline: none !important;
623
                        box-shadow: none !important;
624
                    }
625
                }
626

    
627
                .inter_like_filled {
628

    
629
                    &:before {
630
                        background-image: url(../images/interface/Heart_Filled.svg);
631
                        width: 3.125rem;
632
                        height: 3.125rem;
633
                        margin-right: 0;
634
                    }
635

    
636
                    &:hover, &:focus, &:active {
637
                        background-color: transparent !important;
638
                        border-color: transparent !important;
639
                        outline: none !important;
640
                        box-shadow: none !important;
641
                    }
642
                }
643
            }
644
        }
645
    }
646

    
647
    // Modal
648
    .modal {
649
        font-weight: $font-weight-one;
650
        color: $theme-color-two;
651
        font-size: 8pt;
652

    
653
        .modal-header {
654
            border-bottom: 1px solid $theme-color-two;
655

    
656
            .close {
657
                color: $theme-color-two;
658
                text-shadow: none;
659
            }
660
        }
661

    
662
        .modal-content {
663
            background-color: $theme-color-five;
664
        }
665

    
666
        .modal-footer {
667
            border-top: 1px solid $theme-color-two;
668

    
669
            .btn {
670
                background-color: $theme-color-two;
671
                color: $theme-color-five;
672

    
673
            }
674
        }
675
    }
676

    
677
    .image-modal {
678
        .close {
679
            font-size: 24pt;
680
            color: $theme-color-two;
681
            text-shadow: none;
682
            position: absolute;
683
            top: 1rem;
684
            right: 0.125rem;
685
            opacity: 1;
686
            cursor: pointer;
687
            pointer-events: initial;
688
        }
689
    }
690

    
691
    /*.content {
692
        position: relative;
693

    
694
        //Circle style button
695
        .btn-circle.rounded-circle {
696
            padding: 6px 0px;
697
            font-size: 16px;
698
            text-align: center;
699
        }
700
        .btn-categories
701
        {
702
            position: absolute;
703
            border-width: 5px;
704
            background-color: $theme-color-five;
705
            border-color: $theme-color-four;
706
            color:$theme-color-four;
707
            outline: none !important;
708
            box-shadow: none !important;
709
            font-weight: $font-weight-two;
710

    
711
            &:active
712
            {
713
                background-color: $theme-color-three;
714
                border-color: $theme-color-four;
715
                outline: none !important;
716
                box-shadow: none !important;
717
                color:$theme-color-five;
718
            }
719
        }
720
    }*/
721

    
722
    //CATEGORIES - TILES
723
    .btn.btn-dark.cat-tile {
724
        //STYLING
725
        border-color: $theme-color-four;
726
        border-radius: 0;
727
        border-style: solid;
728
        border-width: 2px;
729
        color: $theme-color-four;
730
        background-color: $theme-color-five;
731
        text-align: center;
732
        outline: none !important;
733
        box-shadow: none !important;
734

    
735
        //TEXT OVERFLOW
736
        overflow: hidden;
737
        text-overflow: ellipsis;
738

    
739
        //FONT
740
        font-size: 22pt;
741

    
742
        //SPACING
743
        padding: 4rem 1rem;
744

    
745
        &:active, &:focus {
746
            background-color: $theme-color-three;
747
            border-color: $theme-color-four;
748
            outline: none !important;
749
            box-shadow: none !important;
750
            color: $theme-color-five;
751
        }
752
    }
753

    
754
    .btn-dark:not(:disabled):not(.disabled).active {
755
        background-color: $theme-color-four;
756
        color: white;
757
        border-color: $theme-color-five;
758
    }
759

    
760
    //CATEGORY/{id} -h2 title NO ARTEFACTS
761
    .category-h2 {
762
        color: $theme-color-four;
763
    }
764

    
765
    .cat-main-div {
766
        margin-top: 2.4rem;
767
    }
768

    
769
    //CATEGORIES - Wrapper around Enter button
770
    .cat-wrapper {
771
        margin: auto;
772
        display: block;
773
        //align-content: center;
774
        //margin:auto;
775
        //display:block;
776
    }
777

    
778
    //CATEGORIES - Enter button
779
    .btn.button-square.cat-enter-butt {
780
        border-radius: 0;
781
        bottom: 5%;
782
        position: fixed;
783
        left: 50%;
784
        transform: translateX(-50%);
785

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

    
792
        &:hover {
793
            color: $theme-color-four;
794
        }
795
    }
796

    
797
    //VERIFY - main text
798
    .ver-text {
799

    
800
        margin-top: 50pt;
801

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

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

    
817
    .shadow {
818
        box-shadow: none;
819
    }
820
}
821

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

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

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

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

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

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

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

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

    
884
.logo-kaplicky {
885
    text-align: center;
886
    display: none;
887

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

    
894
.navbar {
895
    padding: unset;
896
}
897

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

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

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

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

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

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

    
942
    &:hover {
943
        color: $theme-color-four;
944
    }
945
}
946

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

    
952
.bar-desktop {
953
    margin-left: 2rem;
954
    margin-right: 2rem;
955
}
956

    
957
// books component
958
.books-component {
959

    
960
    .book-area {
961
        .card-cus-bottom {
962

    
963
            display: flex;
964
            justify-content: space-between;
965
            align-items: baseline;
966

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

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

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

    
991
            .likes {
992
                display: flex;
993
                flex-direction: column;
994
                align-items: center;
995

    
996
                .inter_like, .inter_like_filled {
997
                    margin: 0 auto;
998

    
999
                    &:before {
1000
                        margin-right: 0;
1001
                        height: 5rem;
1002
                        width: 5rem;
1003
                    }
1004
                }
1005

    
1006
                .artefact-likes {
1007
                    font-size: 12pt;
1008
                    padding: 0;
1009
                }
1010
            }
1011
        }
1012
    }
1013

    
1014
    .info-area {
1015
        color: $theme-color-two;
1016
        margin-top: 0.625rem;
1017
        padding-left: 5rem;
1018

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

    
1025
        &::-webkit-scrollbar {
1026
            width: 0 !important
1027
        } */
1028

    
1029
        h3 {
1030
            font-weight: $font-weight-two;
1031
        }
1032

    
1033
        .switch-view {
1034
            float: right;
1035
            color: $theme-color-one;
1036
            cursor: pointer;
1037
        }
1038

    
1039
        .artefact-notes {
1040
            display: none;
1041
            color: $theme-color-two;
1042

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

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

    
1060
                .metadata {
1061
                    position: relative;
1062
                    display: flex;
1063
                    align-items: baseline;
1064

    
1065
                    a {
1066
                        color: $theme-color-two;
1067
                        text-decoration: none;
1068

    
1069
                        span {
1070
                            font-size: 12pt;
1071
                            font-weight: $font-weight-two;
1072
                        }
1073
                    }
1074

    
1075
                    .arrow-down {
1076
                        position: relative;
1077
                        top: 0;
1078
                        right: 0;
1079
                        width: 0;
1080
                        height: 0;
1081
                        border-left: 0.25rem solid transparent;
1082
                        border-right: 0.25rem solid transparent;
1083
                        border-top: 0.25rem solid $theme-color-two;
1084
                        margin: 0 0.5rem 0 0.5rem;
1085
                    }
1086
                }
1087
            }
1088

    
1089
            .white-pin {
1090
                color: $theme-color-one;
1091
                border-bottom: .042rem solid $theme-color-one;
1092

    
1093
                &:after {
1094
                    content: '';
1095
                    background-color: $theme-color-one;
1096
                }
1097

    
1098
                .metadata {
1099

    
1100
                    a {
1101
                        color: $theme-color-one;
1102
                    }
1103

    
1104
                    .arrow-down {
1105
                        border-top: 0.25rem solid $theme-color-one;
1106
                    }
1107
                }
1108
            }
1109

    
1110
            .metadata-text {
1111
                font-size: 12pt;
1112
                color: $theme-color-one;
1113
                padding-top: 10px;
1114
                padding-left: 25px;
1115
                padding-right: 25px;
1116

    
1117
                .inter_like {
1118

    
1119
                    &:before {
1120
                        background-image: url(../images/interface/Heart_Empty.svg);
1121
                        width: 5rem;
1122
                        height: 5rem;
1123
                    }
1124

    
1125
                    &:hover, &:focus, &:active {
1126
                        background-color: transparent !important;
1127
                        border-color: transparent !important;
1128
                        outline: none !important;
1129
                        box-shadow: none !important;
1130
                    }
1131
                }
1132

    
1133
                .inter_like_filled {
1134

    
1135
                    &:before {
1136
                        background-image: url(../images/interface/Heart_Filled.svg);
1137
                        width: 5rem;
1138
                        height: 5rem;
1139
                    }
1140

    
1141
                    &:hover, &:focus, &:active {
1142
                        background-color: transparent !important;
1143
                        border-color: transparent !important;
1144
                        outline: none !important;
1145
                        box-shadow: none !important;
1146
                    }
1147
                }
1148
            }
1149
        }
1150

    
1151
        .inter_info {
1152

    
1153
            float: right;
1154
            color: $theme-color-one;
1155
            padding-right: 1rem;
1156

    
1157
            &:before {
1158
                background-image: url(../images/interface/Button_Info_White.svg);
1159
                width: 1.875rem;
1160
                height: 1.875rem;
1161
            }
1162

    
1163
            &:hover, &:focus, &:active {
1164
                background-color: transparent !important;
1165
                border-color: transparent !important;
1166
                outline: none !important;
1167
                box-shadow: none !important;
1168
            }
1169
        }
1170
    }
1171
}
1172

    
1173
@media (max-width: 610px) {
1174
    .js-cookie-consent-agree {
1175
        margin-bottom: 1rem;
1176
    }
1177
}
1178

    
1179
@media screen and (max-height: 450px) {
1180
    .sidenav a {
1181
        font-size: 18px;
1182
    }
1183
    .down {
1184
        bottom: unset;
1185
        margin-bottom: unset;
1186
    }
1187
}
1188

    
1189
@media (max-width: 990px) {
1190
    .bar-desktop {
1191
        display: none;
1192
    }
1193
}
1194

    
1195
@media (max-width: 770px) {
1196
    .logo-kaplicky {
1197
        margin: 0 auto;
1198
        display: block;
1199
    }
1200
    .arrow {
1201
        position: absolute;
1202
        width: 0;
1203
        height: 0;
1204
        margin: 2rem;
1205
        cursor: pointer;
1206
        border: 0.59055rem solid transparent;
1207

    
1208
        &:active, &.active, &:focus {
1209
            outline: none;
1210
            box-shadow: none;
1211
        }
1212
    }
1213
    .arrow-left {
1214
        margin-left: 80%;
1215

    
1216
        border-right: 0.59055rem solid $theme-color-five;
1217
        background-color: $theme-color-four !important;
1218
    }
1219
    .arrow-right {
1220
        border-left: 0.59055rem solid $theme-color-four;
1221

    
1222
        position: fixed;
1223
        z-index: 3;
1224
        top: 0;
1225
        left: 0;
1226
    }
1227
    .menu-item:active, .menu-item.active {
1228
        color: $theme-color-five;
1229
        background-color: $theme-color-one;
1230
    }
1231
    .books-component {
1232
        .info-area {
1233
            padding-left: 1.5625rem;
1234
        }
1235
    }
1236
}
1237

    
1238
@media only screen and (max-width: 540px) {
1239
    .sidenav {
1240
        width: 0;
1241
    }
1242
    .head-title.text-center h1 {
1243
        font-size: 23pt;
1244
        padding-top: 50pt;
1245
        white-space: nowrap;
1246
    }
1247

    
1248

    
1249
    /*.btn-circle.rounded-circle.btn-sm
1250
    {
1251
        width: 90px;
1252
        height: 90px;
1253
    }
1254

    
1255
    .btn-circle.rounded-circle.btn-dm
1256
    {
1257
        width: 130px;
1258
        height: 130px;
1259
    }
1260

    
1261
    .btn-circle.rounded-circle.btn-xl
1262
    {
1263
        width: 180px;
1264
        height: 180px;
1265
    }*/
1266

    
1267
    body {
1268
        .carousel {
1269
            .carousel-inner {
1270
                .social-logo {
1271
                    padding-left: 30px;
1272
                    top: 20%;
1273
                }
1274
            }
1275
        }
1276
    }
1277
}
1278

    
1279
@media (min-width: 330px) and (max-height: 900px) {
1280
    body {
1281
        .carousel {
1282
            .carousel-inner {
1283
                .social-logo {
1284
                    top: 25%;
1285
                }
1286
            }
1287
        }
1288
    }
1289
}
1290

    
1291
@media (min-width: 1024px) {
1292

    
1293
    body {
1294
        .kaplicky {
1295
            text-align: center;
1296
            font-size: 30pt;
1297
            margin-bottom: 3rem;
1298
        }
1299

    
1300
        .pin-left:before {
1301
            height: 1.125rem;
1302
            width: 1.125rem;
1303
            top: -1.125rem;
1304
            left: -0.56rem;
1305
        }
1306

    
1307
        .pin-left {
1308
            // center fixed div
1309
            left: 75%;
1310
            transform: translateX(-50%);
1311
            width: 70%;
1312
        }
1313

    
1314
        .text {
1315
            text-align: left;
1316
            font-size: 18pt;
1317
            line-height: 26pt;
1318
        }
1319

    
1320
        .text2 {
1321
            text-align: left;
1322
            font-size: 18pt;
1323
            line-height: 26pt;
1324
        }
1325

    
1326
        .carousel {
1327
            .carousel-inner {
1328
                .social-logo {
1329
                    justify-content: center;
1330
                    top: 90%;
1331

    
1332
                    .logo {
1333
                        margin-left: 10rem;
1334

    
1335
                        img {
1336
                            width: 3.125rem;
1337
                        }
1338

    
1339
                        &:first-child {
1340
                            margin-left: 0;
1341
                        }
1342
                    }
1343
                }
1344

    
1345
                .carousel-button {
1346
                    bottom: 15%;
1347
                }
1348
            }
1349

    
1350
            .carousel-caption {
1351
                padding: 3.75rem 6.25rem 5em;
1352

    
1353
                h2 {
1354
                    margin-bottom: 1rem;
1355
                }
1356
            }
1357
        }
1358

    
1359
        .button-square {
1360
            font-size: 18pt;
1361
            padding: 0.28125rem 3.7rem;
1362
        }
1363

    
1364
        .metadata-area {
1365
            .pin-horizontal {
1366
                margin: 5rem 3.125rem 0 0;
1367

    
1368
                .metadata {
1369

    
1370
                    margin-right: 0.5rem;
1371

    
1372
                    .arrow-down {
1373
                        border-left: 0.5rem solid transparent;
1374
                        border-right: 0.5rem solid transparent;
1375
                        border-top: 0.5rem solid $theme-color-two;
1376
                    }
1377

    
1378
                    a {
1379
                        span {
1380
                            font-size: 16pt;
1381
                        }
1382
                    }
1383
                }
1384

    
1385
                &:after {
1386
                    height: 0.75rem;
1387
                    width: 0.75rem;
1388
                    top: 0.375rem;
1389
                }
1390
            }
1391

    
1392
            .white-pin {
1393
                .metadata {
1394
                    .arrow-down {
1395
                        border-top: 0.5rem solid $theme-color-one;
1396
                    }
1397
                }
1398
            }
1399

    
1400
            .metadata-text {
1401
                font-size: 19pt;
1402
                max-width: 50%;
1403

    
1404
                .artefact-info {
1405
                    .artefact-name {
1406
                        font-size: 16pt;
1407
                    }
1408

    
1409
                    .artefact-author {
1410
                        font-size: 12pt;
1411
                    }
1412

    
1413
                    .inter_like_filled {
1414
                        &:before {
1415
                            width: 5rem;
1416
                            height: 5rem;
1417
                        }
1418
                    }
1419
                }
1420
            }
1421
        }
1422
    }
1423
}
1424

    
1425
@media (min-width: 1575px) {
1426
    body {
1427
        .carousel {
1428
            .carousel-inner {
1429
                .carousel-button {
1430
                    bottom: 20%;
1431
                }
1432
            }
1433
        }
1434
    }
1435
}
(1-1/3)