Projekt

Obecné

Profil

Stáhnout (32.1 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 8bb7ed68 Marek Lovčí
            padding-left: 1rem;
72
            padding-right: 1rem;
73 d668e889 Adam Mištera
            transform: translateY(-50%);
74 d79e27be Marek Lovčí
            background-color: rgba(239, 218, 179, 0.5);
75 c4f6e57a Adam Mištera
        }
76
    }
77 3b97c440 zabran
78 2b1ca67d zabran
    /////////text types
79
    //většina běžných textů
80
    .text {
81 83496d8e zabran
        font-weight: $font-weight-one;
82 2b1ca67d zabran
        font-size: 8pt;
83
        line-height: 9pt;
84
    }
85
86
    //text inputu a název artefaktů
87 d79e27be Marek Lovčí
    .text2 {
88 83496d8e zabran
        font-weight: $font-weight-two;
89 2b1ca67d zabran
        font-size: 8pt;
90
    }
91
92
    //název "kaplicky" a "choose a few" v categories (tam má jinou barvu)
93 d79e27be Marek Lovčí
    .kaplicky {
94 2b1ca67d zabran
        color: $theme-color-one;
95
        font-size: 11pt;
96 83496d8e zabran
        font-weight: $font-weight-three;
97 2b1ca67d zabran
        letter-spacing: 3pt;
98
    }
99
100
    //autor artefaktu
101 d79e27be Marek Lovčí
    .text-author {
102 83496d8e zabran
        font-weight: $font-weight-one;
103 2b1ca67d zabran
        font-size: 7pt;
104
        color: $theme-color-four;
105
    }
106
107
    //počet lajků
108 d79e27be Marek Lovčí
    .text-number {
109 83496d8e zabran
        font-weight: $font-weight-two;
110 2b1ca67d zabran
        font-size: 5pt;
111
        color: $theme-color-four;
112
    }
113
114
    //notes u metadat, about v about, text levého menu
115 d79e27be Marek Lovčí
    .text-headline {
116 83496d8e zabran
        font-weight: $font-weight-two;
117 2b1ca67d zabran
        font-size: 12pt;
118
        color: $theme-color-four;
119
    }
120
121 79e22cad zabran
    //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 2b1ca67d zabran
    //název metadata, text pravého menu
129 d79e27be Marek Lovčí
    .text-page {
130 83496d8e zabran
        font-weight: $font-weight-two;
131 2b1ca67d zabran
        font-size: 7pt;
132
    }
133
134 aee27358 zabran
    ////color pro změnu jen barvy
135 d79e27be Marek Lovčí
    .black {
136 aee27358 zabran
        color: $theme-color-five;
137
    }
138 d79e27be Marek Lovčí
139
    .white {
140 aee27358 zabran
        color: $theme-color-one;
141
    }
142 d79e27be Marek Lovčí
143
    .colored {
144 aee27358 zabran
        color: $theme-color-four;
145
    }
146
147 2b1ca67d zabran
148
    ////login
149 d79e27be Marek Lovčí
    .auth {
150
        .card {
151 3b97c440 zabran
            border: none;
152
            text-align: center;
153
            font-size: 8pt;
154
        }
155 3b397a49 zabran
156 d79e27be Marek Lovčí
        .col-form-label {
157 3b397a49 zabran
            text-align: left;
158 c0265e9e zabran
            padding-top: 0;
159
            padding-bottom: 0;
160 3b397a49 zabran
        }
161 d79e27be Marek Lovčí
162
        .form-control {
163 c0265e9e zabran
            padding: 0;
164 3b397a49 zabran
            height: 17pt;
165 c0265e9e zabran
            border-radius: 0;
166 d79e27be Marek Lovčí
167
            &:focus {
168 a37ca88b zabran
                //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 7929abb4 zabran
                -webkit-box-shadow: none;
174
                box-shadow: none;
175
            }
176
        }
177 3b97c440 zabran
    }
178
179 76a0a13d zabran
    //Oprava barev pro Chrom
180
    input:-webkit-autofill {
181 d79e27be Marek Lovčí
        -webkit-box-shadow: 0 0 0 50px $theme-color-five inset !important;
182 76a0a13d zabran
        -webkit-text-fill-color: $theme-color-one;
183 7929abb4 zabran
        background-color: $theme-color-five !important;
184
        //outline: none !important;
185 d79e27be Marek Lovčí
        &:active, &:focus, &:visited, &:hover {
186
            -webkit-box-shadow: 0 0 0 50px $theme-color-five inset !important;
187 76a0a13d zabran
            -webkit-text-fill-color: $theme-color-one;
188 7929abb4 zabran
            background-color: $theme-color-five !important;
189
            //outline: none !important;
190 76a0a13d zabran
        }
191
    }
192
193 5481d358 Adam Mištera
    .card-body {
194 d79e27be Marek Lovčí
        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 3b97c440 zabran
        box-shadow: none;
208
        font-size: 8pt;
209 7929abb4 zabran
        outline: none;
210 4bb8ff64 zabran
211 d79e27be Marek Lovčí
        &:active, &:focus, &:visited, &:hover {
212 7929abb4 zabran
            outline: none;
213 4bb8ff64 zabran
            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 d79e27be Marek Lovčí
    }
224
225
    .form-control.is-invalid {
226 4bb8ff64 zabran
        box-shadow: none;
227
        border-color: $theme-color-four;
228
        background-image: none;
229 d79e27be Marek Lovčí
230
        &:active, &:focus, &:visited {
231 4bb8ff64 zabran
            box-shadow: none;
232
            border-color: $theme-color-four;
233
        }
234
    }
235 34c0b905 rizir01
236 c4f6e57a Adam Mištera
    .button-square {
237 d668e889 Adam Mištera
        font-size: 8pt;
238 c38f4c3a zabran
        background-color: $theme-color-five;
239
        color: $theme-color-one;
240
        border: 0.5pt solid $theme-color-one;
241 c4f6e57a Adam Mištera
        border-radius: 0;
242 7b6d8d72 Adam Mištera
        padding: 0.4675rem 2.475rem;
243 83496d8e zabran
        font-weight: $font-weight-one;
244 2696c864 Adam Mištera
245 eeaf2e21 zabran
        &:active, &:focus, &:visited, &:hover {
246 2696c864 Adam Mištera
            outline: none;
247
            box-shadow: none;
248 eeaf2e21 zabran
            color: $theme-color-one;
249
        }
250 d79e27be Marek Lovčí
251
        &:hover {
252 eeaf2e21 zabran
            color: $theme-color-four;
253 2696c864 Adam Mištera
        }
254 c4f6e57a Adam Mištera
    }
255 34c0b905 rizir01
256 aee27358 zabran
    //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 8075a85b zabran
        position: fixed;
272
        bottom: 0;
273 aee27358 zabran
        text-align: left;
274 d79e27be Marek Lovčí
275
        // center fixed div
276
        left: 50%;
277
        transform: translateX(-50%);
278
        width: 70%;
279
280
        .text {
281 83496d8e zabran
            margin-left: 0.5rem;
282 d79e27be Marek Lovčí
            margin-bottom: 0.2rem; // looks fugly without margin
283 83496d8e zabran
        }
284 d79e27be Marek Lovčí
285
        p {
286 c0265e9e zabran
            margin-top: 0;
287
            margin-bottom: 0;
288 83496d8e zabran
        }
289 aee27358 zabran
    }
290
291 d79e27be Marek Lovčí
    li {
292 b711d297 zabran
        list-style-type: none;
293
    }
294
295 c4f6e57a Adam Mištera
    .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 d79e27be Marek Lovčí
            background-position: center center;
308
            background-repeat: no-repeat;
309 c4f6e57a Adam Mištera
        }
310
    }
311 34c0b905 rizir01
312 8bb7ed68 Marek Lovčí
    .fav-cat-mybooks {
313
        color: $theme-color-two;
314 b4965c0b rizir01
        text-align: center;
315
        font-size: 1.9rem;
316
    }
317
318 8bb7ed68 Marek Lovčí
    .fav-cat-nofav {
319 b4965c0b rizir01
        text-align: center;
320 8bb7ed68 Marek Lovčí
        color: $theme-color-three;
321 b4965c0b rizir01
        background-color: $theme-color-five;
322
        border-color: $theme-color-three;
323
    }
324
325 70f69b41 Adam Mištera
    .artefacts-area, .artefact-area {
326 084eca03 Adam Mištera
327 b56b3d9b Adam Mištera
        h5 {
328
            color: $theme-color-two;
329 b4965c0b rizir01
            //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 b56b3d9b Adam Mištera
        }
336 084eca03 Adam Mištera
337 b56b3d9b Adam Mištera
        h6 {
338
            color: $theme-color-two;
339 b4965c0b rizir01
            font-size: 0.9rem;
340 83496d8e zabran
            //font-weight: lighter;
341
            font-weight: $font-weight-one;
342 b56b3d9b Adam Mištera
        }
343 084eca03 Adam Mištera
344 b56b3d9b Adam Mištera
        img {
345
            border: transparent;
346
            border-radius: 1px;
347
        }
348 084eca03 Adam Mištera
349 b56b3d9b Adam Mištera
        .card {
350
            margin: 10px;
351
            border: none !important;
352
        }
353 084eca03 Adam Mištera
354 b56b3d9b Adam Mištera
        .left_panel_info {
355
            margin-top: 15px;
356 8bb7ed68 Marek Lovčí
            max-width: 70%; //250px
357 b56b3d9b Adam Mištera
        }
358
359
        .right_panel_info {
360
            margin-top: 15px;
361 b4965c0b rizir01
        }
362
363 8bb7ed68 Marek Lovčí
        .likes_text {
364 b4965c0b rizir01
            text-align: center;
365 b56b3d9b Adam Mištera
        }
366
367
        .card-cus-bottom {
368
            background-color: $theme-color-five;
369 b4965c0b rizir01
            padding-right: 0;
370
            padding-left: 0;
371 b56b3d9b Adam Mištera
        }
372
373
        .inter_info {
374
            &:before {
375 b4965c0b rizir01
                //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 8bb7ed68 Marek Lovčí
                width: 8vw;
380
                height: 8vw;
381 b56b3d9b Adam Mištera
            }
382
        }
383
384
        .inter_like {
385
            display: none;
386 d79e27be Marek Lovčí
387 b56b3d9b Adam Mištera
            &:before {
388 b4965c0b rizir01
                //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 8bb7ed68 Marek Lovčí
                width: 8vw;
393
                height: 8vw;
394 b56b3d9b Adam Mištera
            }
395
        }
396
397
        .inter_like_filled {
398
            &:before {
399 b4965c0b rizir01
                //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 8bb7ed68 Marek Lovčí
                width: 8vw;
404
                height: 8vw;
405 b56b3d9b Adam Mištera
            }
406
        }
407
408
        .inter_info, .inter_like, .inter_like_filled {
409
            padding: 0;
410 d79e27be Marek Lovčí
411 b56b3d9b Adam Mištera
            &:focus, &:active, &:hover {
412
                background-color: transparent !important;
413
                border-color: transparent !important;
414
                outline: none !important;
415
                box-shadow: none !important;
416 d79e27be Marek Lovčí
            }
417
        ;
418 b56b3d9b Adam Mištera
        }
419
    }
420 34c0b905 rizir01
421 bfa73340 Adam Mištera
    // Artefact area
422 70f69b41 Adam Mištera
    .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 bfa73340 Adam Mištera
                background-image: url(../images/interface/Heart_Empty.svg);
453
                width: 1.563rem;
454
                height: 1.25rem;
455 b4965c0b rizir01
456 bfa73340 Adam Mištera
            }
457
        }
458
459
        .inter_like_filled {
460
            &:before {
461 d79e27be Marek Lovčí
                background-image: url(../images/interface/Heart_Filled.svg);
462 bfa73340 Adam Mištera
                width: 1.563rem;
463
                height: 1.25rem;
464 70f69b41 Adam Mištera
            }
465
        }
466
467
        .inter_info {
468
469
            padding-right: 1rem;
470 d79e27be Marek Lovčí
471 70f69b41 Adam Mištera
            &:before {
472 bfa73340 Adam Mištera
                background-image: url(../images/interface/Button_Info.svg);
473
                width: 1.875rem;
474
                height: 1.875rem;
475 70f69b41 Adam Mištera
            }
476
        }
477
478
        .artefact-likes {
479
            font-weight: $font-weight-two;
480
            font-size: 5pt;
481
            padding-right: 0.25rem;
482
        }
483
    }
484
485 3e4f999e Adam Mištera
    // Metadata area
486 3c062db9 Adam Mištera
    .metadata-area {
487
488
        h2 {
489 1bcdcb05 Adam Mištera
            color: $theme-color-two;
490 3c062db9 Adam Mištera
            font-weight: $font-weight-two;
491
            font-size: 12pt;
492
        }
493
494 3e4f999e Adam Mištera
        .arrow-down {
495 3dfc8d9f Adam Mištera
            position: fixed;
496 3e4f999e Adam Mištera
            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 3c062db9 Adam Mištera
        }
505
506
        .pin-horizontal {
507 3e4f999e Adam Mištera
            color: $theme-color-two;
508
            border-bottom: .042rem solid $theme-color-two;
509 3c062db9 Adam Mištera
            display: inline-block;
510 26e128a8 Adam Mištera
            margin: 2.75rem 3.125rem 0 0;
511 3e4f999e Adam Mištera
512 d79e27be Marek Lovčí
            &:after {
513 3c062db9 Adam Mištera
                content: '';
514 d79e27be Marek Lovčí
                background-color: #ddd1b9;
515 3c062db9 Adam Mištera
                position: relative;
516
                height: .5rem;
517
                width: .5rem;
518
                border-radius: 50%;
519 d79e27be Marek Lovčí
                display: block;
520
                margin-left: auto;
521
                top: .25rem;
522 3c062db9 Adam Mištera
            }
523
524 3e4f999e Adam Mištera
            .metadata {
525
                position: relative;
526
                display: flex;
527
                align-items: baseline;
528
529 aed76813 Adam Mištera
                a {
530
                    color: $theme-color-two;
531
                    text-decoration: none;
532
533
                    span {
534
                        font-weight: $font-weight-two;
535
                    }
536 3e4f999e Adam Mištera
                }
537
538
                .arrow-down {
539
                    position: relative;
540
                    top: 0;
541
                    right: 0;
542
                    width: 0;
543
                    height: 0;
544
                    border-left: 0.25rem solid transparent;
545
                    border-right: 0.25rem solid transparent;
546
                    border-top: 0.25rem solid $theme-color-two;
547
                    margin: 0 0.5rem 0 0.5rem;
548
                }
549 3c062db9 Adam Mištera
            }
550 3e4f999e Adam Mištera
        }
551
552
        .white-pin {
553
            color: $theme-color-one;
554
            border-bottom: .042rem solid $theme-color-one;
555 3c062db9 Adam Mištera
556 aed76813 Adam Mištera
            &:after {
557 3e4f999e Adam Mištera
                content: '';
558
                background-color: $theme-color-one;
559
            }
560 3c062db9 Adam Mištera
561 3e4f999e Adam Mištera
            .metadata {
562 aed76813 Adam Mištera
                a {
563
                    color: $theme-color-one;
564
                }
565
566 3e4f999e Adam Mištera
                .arrow-down {
567
                    border-top: 0.25rem solid $theme-color-one;
568
                }
569
            }
570 3c062db9 Adam Mištera
        }
571
572
        .metadata-text {
573 3e4f999e Adam Mištera
            font-size: 8pt;
574 3c062db9 Adam Mištera
            color: $theme-color-one;
575
            padding-top: 10px;
576
            padding-left: 25px;
577
            padding-right: 25px;
578
579
            .artefact-info {
580
                color: $theme-color-two;
581
                margin-top: 10px;
582
583
                .artefact-name {
584 3e4f999e Adam Mištera
                    font-weight: $font-weight-two;
585 3c062db9 Adam Mištera
                    font-size: 8pt;
586
                }
587
588
                .artefact-author {
589 3e4f999e Adam Mištera
                    font-weight: $font-weight-one;
590 3c062db9 Adam Mištera
                    font-size: 7pt;
591
                }
592 3e4f999e Adam Mištera
593 1bcdcb05 Adam Mištera
                .inter_like {
594
595
                    &:before {
596
                        background-image: url(../images/interface/Heart_Empty.svg);
597
                        width: 3.125rem;
598
                        height: 3.125rem;
599
                        margin-right: 0;
600
                    }
601
602
                    &:hover, &:focus, &:active {
603
                        background-color: transparent !important;
604
                        border-color: transparent !important;
605
                        outline: none !important;
606
                        box-shadow: none !important;
607
                    }
608
                }
609
610 3e4f999e Adam Mištera
                .inter_like_filled {
611
612
                    &:before {
613 d79e27be Marek Lovčí
                        background-image: url(../images/interface/Heart_Filled.svg);
614 26e128a8 Adam Mištera
                        width: 3.125rem;
615
                        height: 3.125rem;
616
                        margin-right: 0;
617 3e4f999e Adam Mištera
                    }
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 3c062db9 Adam Mištera
            }
627
        }
628
    }
629
630 bfa73340 Adam Mištera
    // Modal
631
    .modal {
632
        font-weight: $font-weight-one;
633
        color: $theme-color-two;
634
        font-size: 8pt;
635
636
        .modal-header {
637
            border-bottom: 1px solid $theme-color-two;
638
639
            .close {
640
                color: $theme-color-two;
641
                text-shadow: none;
642
            }
643
        }
644
645
        .modal-content {
646
            background-color: $theme-color-five;
647
        }
648
649
        .modal-footer {
650
            border-top: 1px solid $theme-color-two;
651
652
            .btn {
653
                background-color: $theme-color-two;
654
                color: $theme-color-five;
655
656
            }
657
        }
658
    }
659
660
    .image-modal {
661
        .close {
662
            font-size: 24pt;
663
            color: $theme-color-two;
664
            text-shadow: none;
665
            position: absolute;
666
            top: 1rem;
667
            right: 0.125rem;
668
            opacity: 1;
669
            cursor: pointer;
670
            pointer-events: initial;
671
        }
672
    }
673
674 c0265e9e zabran
    /*.content {
675 977060b9 rizir01
        position: relative;
676 31d75014 rizir01
677 977060b9 rizir01
        //Circle style button
678
        .btn-circle.rounded-circle {
679
            padding: 6px 0px;
680
            font-size: 16px;
681
            text-align: center;
682
        }
683
        .btn-categories
684 c38f4c3a zabran
        {
685 977060b9 rizir01
            position: absolute;
686
            border-width: 5px;
687
            background-color: $theme-color-five;
688 c38f4c3a zabran
            border-color: $theme-color-four;
689 977060b9 rizir01
            color:$theme-color-four;
690 c4f6e57a Adam Mištera
            outline: none !important;
691
            box-shadow: none !important;
692 977060b9 rizir01
            font-weight: $font-weight-two;
693
694
            &:active
695
            {
696
                background-color: $theme-color-three;
697
                border-color: $theme-color-four;
698
                outline: none !important;
699
                box-shadow: none !important;
700
                color:$theme-color-five;
701
            }
702
        }
703 c0265e9e zabran
    }*/
704 977060b9 rizir01
705 6c518068 rizir01
    //CATEGORIES - TILES
706 d79e27be Marek Lovčí
    .btn.btn-dark.cat-tile {
707 6c518068 rizir01
        //STYLING
708
        border-color: $theme-color-four;
709
        border-radius: 0;
710
        border-style: solid;
711
        border-width: 2px;
712
        color: $theme-color-four;
713
        background-color: $theme-color-five;
714
        text-align: center;
715
        outline: none !important;
716
        box-shadow: none !important;
717
718 25ec2fab Marek Lovčí
        //TEXT OVERFLOW
719
        overflow: hidden;
720
        text-overflow: ellipsis;
721
722 6c518068 rizir01
        //FONT
723 25ec2fab Marek Lovčí
        font-size: 22pt;
724 6c518068 rizir01
725
        //SPACING
726 8bb7ed68 Marek Lovčí
        padding: 4rem 1rem;
727 6c518068 rizir01
728 d79e27be Marek Lovčí
        &:active, &:focus {
729 6c518068 rizir01
            background-color: $theme-color-three;
730
            border-color: $theme-color-four;
731
            outline: none !important;
732
            box-shadow: none !important;
733
            color: $theme-color-five;
734 c4f6e57a Adam Mištera
        }
735 6c518068 rizir01
    }
736 c38f4c3a zabran
737 eadc983d rizir01
    .btn-dark:not(:disabled):not(.disabled).active{
738
        background-color: $theme-color-four;
739
        color:white;
740
        border-color: $theme-color-five;
741
    }
742
743 fb354d59 rizir01
    //CATEGORY/{id} -h2 title NO ARTEFACTS
744 d79e27be Marek Lovčí
    .category-h2 {
745 fb354d59 rizir01
        color: $theme-color-four;
746 c4f6e57a Adam Mištera
    }
747 c74e9df8 rizir01
748
    //CATEGORIES - Choose a topic TITLE
749 8bb7ed68 Marek Lovčí
    .head-title.text-center.cat-main-topic {
750 c74e9df8 rizir01
751 8bb7ed68 Marek Lovčí
        h1 {
752 c74e9df8 rizir01
            font-size: 1.9rem;
753
        }
754
    }
755 9635619e rizir01
756 eadc983d rizir01
    //CATEGORIES - Main menu
757
    .cat-main-menu{
758
        font-size: 1.75rem;
759
        text-align: center;
760
        margin-bottom: 30pt;
761
762
        a,a:visited{
763
            color: $theme-color-two;
764
            text-decoration: none;
765
        }
766
767
        a:hover{
768
            color: $theme-color-four;
769
        }
770
771
    }
772
773
    //CATEGORIES - Wrapper around Enter button
774
    .cat-wrapper{
775
        margin:auto;
776
        display:block;
777
        //align-content: center;
778
        //margin:auto;
779
        //display:block;
780
    }
781
782
    //CATEGORIES - Enter button
783
    .btn.button-square.cat-enter-butt {
784
        font-size: 8pt;
785
        background-color: grey;
786
        color: $theme-color-one;
787
        border: 0.5pt solid $theme-color-one;
788
        border-radius: 0;
789
        bottom: 5%;
790
        position: fixed;
791
        left: 50%;
792
        transform: translateX(-50%);
793
        width: 6.5rem;
794
        height: 2rem;
795
        font-weight: $font-weight-one;
796
797
        &:active, &:focus, &:visited, &:hover {
798
            outline: none;
799
            box-shadow: none;
800
            color: $theme-color-one;
801
        }
802
803
        &:hover {
804
            color: $theme-color-four;
805
        }
806
    }
807
808 9635619e rizir01
    //VERIFY - main text
809
    .ver-text{
810
811
        margin-top: 20pt    ;
812
813
        h2{
814
            text-align: center;
815
            color:$theme-color-two;
816
        }
817
    }
818 34c0b905 rizir01
}
819
820 d79e27be Marek Lovčí
.top-bar {
821 927fb559 zabran
    background-color: $theme-color-five;
822 693a0a6d zabran
    min-height: 5rem;
823 927fb559 zabran
    position: fixed;
824
    width: 100%;
825
    top: 0;
826 d79e27be Marek Lovčí
    z-index: 2;
827 8bb7ed68 Marek Lovčí
828 54610fab zabran
    .shadow {
829
        box-shadow: none;
830
    }
831 8baafb46 zabran
}
832
833 1c3121fe zabran
.sidenav {
834
    height: 100%;
835 79e22cad zabran
    width: 0;
836
    //width: 250px;
837 1c3121fe zabran
    position: fixed;
838 d79e27be Marek Lovčí
    z-index: 4;
839 1c3121fe zabran
    top: 0;
840
    left: 0;
841 8075a85b zabran
    background-color: $theme-color-four;
842 1c3121fe zabran
    overflow-x: hidden;
843
    transition: 0.5s;
844
}
845
846
.sidenav a {
847
    text-decoration: none;
848 8075a85b zabran
    color: $theme-color-five;
849 1c3121fe zabran
    display: block;
850
    transition: 0.3s;
851 d79e27be Marek Lovčí
852
    &:hover {
853 927fb559 zabran
        color: $theme-color-four;
854
        background-color: $theme-color-one;
855
    }
856 d79e27be Marek Lovčí
857
    &:active, &:focus, .active {
858 927fb559 zabran
        color: $theme-color-one;
859
        background-color: $theme-color-four;
860
    }
861 1c3121fe zabran
}
862
863 8bb7ed68 Marek Lovčí
.bar-desktop {
864 79e22cad zabran
    display: flex;
865
    align-items: center;
866 c9a0c0b2 zabran
    text-align: center;
867
    min-width: 100%;
868 693a0a6d zabran
    padding-top: 2rem;
869
    padding-bottom: 2rem;
870 79e22cad zabran
}
871
872 54610fab zabran
.down {
873
    position: absolute;
874
    z-index: 5;
875
    bottom: 0;
876
    left: 0;
877
    width: 100%;
878
    margin-bottom: 3rem;
879
}
880
881 8bb7ed68 Marek Lovčí
.menu-item {
882
    padding: 0.25rem 1rem;
883 54610fab zabran
    width: 100%;
884
    border: 0;
885 8bb7ed68 Marek Lovčí
886
    &:active, &.active, &:focus {
887 79e22cad zabran
        color: $theme-color-one;
888 d7feebff zabran
        //background-color: $theme-color-five;
889 79e22cad zabran
        border: none;
890
        outline: none;
891
        box-shadow: none;
892
    }
893 1c3121fe zabran
}
894
895 d79e27be Marek Lovčí
.logo-kaplicky {
896
    text-align: center;
897 79e22cad zabran
    display: none;
898 8bb7ed68 Marek Lovčí
899
    &:active, &.active, &:focus {
900 79e22cad zabran
        outline: none;
901
        box-shadow: none;
902
    }
903 927fb559 zabran
}
904
905 8bb7ed68 Marek Lovčí
.navbar {
906 c9a0c0b2 zabran
    padding: unset;
907
}
908
909 749ca4c4 Marek Lovčí
.vertical-center {
910 d79e27be Marek Lovčí
    margin-top: -5.1rem; // fixed navbar correction
911 749ca4c4 Marek Lovčí
    min-height: 100vh;
912
    display: flex;
913
    align-items: center;
914
}
915
916
.error {
917
    color: $theme-color-one;
918
    font-size: xx-large;
919
    display: block;
920
    text-align: center;
921
}
922
923 d79e27be Marek Lovčí
// login and registration alert bottom margin
924
.al {
925
    margin-bottom: 3rem;
926
}
927
928 df15f2e5 Marek Lovčí
.js-cookie-consent {
929
    position: fixed;
930
    z-index: 9999;
931
    text-align: center;
932
    width: 100%;
933
    bottom: 0px;
934
    padding: 10px;
935
    background: $theme-color-four;
936
}
937
938
.js-cookie-consent-agree {
939
    font-size: 8pt;
940
    background-color: $theme-color-five;
941
    color: $theme-color-one;
942
    border: 0.5pt solid $theme-color-one;
943
    border-radius: 0;
944
    padding: 0.5rem 2rem;
945
    font-weight: $font-weight-one;
946
947
    &:active, &:focus, &:visited, &:hover {
948
        outline: none;
949
        box-shadow: none;
950
        color: $theme-color-one;
951
    }
952
953
    &:hover {
954
        color: $theme-color-four;
955
    }
956
}
957
958
.cookie-consent__message {
959
    padding: 1rem;
960
    display: inline-block;
961
}
962
963 0218d5c7 Adam Mištera
// books component
964
.books-component {
965
966
    .book-area {
967
        .card-cus-bottom {
968
969
            display: flex;
970
            justify-content: space-between;
971
            align-items: baseline;
972
973
            .book-arrow {
974
                &:after {
975
                    content: '';
976
                    bottom: 3rem;
977
                    position: absolute;
978
                    border-top: 1.25rem solid transparent;
979
                    border-bottom: 1.25rem solid transparent;
980
                }
981
            }
982
983
            .book-arrow-left {
984
                &:after {
985
                    left: 25%;
986
                    border-right: 1.25rem solid $theme-color-two;
987
                }
988
            }
989
990
            .book-arrow-right {
991 8bb7ed68 Marek Lovčí
                &:after {
992
                    right: 25%;
993
                    border-left: 1.25rem solid $theme-color-two;
994
                }
995 0218d5c7 Adam Mištera
            }
996
997
            .likes {
998
                display: flex;
999
                flex-direction: column;
1000
                align-items: center;
1001
1002
                .inter_like, .inter_like_filled {
1003
                    margin: 0 auto;
1004 8bb7ed68 Marek Lovčí
1005 0218d5c7 Adam Mištera
                    &:before {
1006
                        margin-right: 0;
1007
                        height: 5rem;
1008
                        width: 5rem;
1009
                    }
1010
                }
1011
1012
                .artefact-likes {
1013
                    font-size: 12pt;
1014
                    padding: 0;
1015
                }
1016
            }
1017
        }
1018
    }
1019
1020
    .info-area {
1021
        color: $theme-color-two;
1022
        margin-top: 0.625rem;
1023
        padding-left: 5rem;
1024
1025
        /* could be use to hide overflowing notes
1026
        max-height: 80vh;
1027
        overflow-y: scroll;
1028
        scrollbar-width: none;
1029
        -ms-overflow-style: none;
1030
1031
        &::-webkit-scrollbar {
1032
            width: 0 !important
1033
        } */
1034
1035
        h3 {
1036
            font-weight: $font-weight-two;
1037
        }
1038
1039
        .switch-view {
1040
            float: right;
1041
            color: $theme-color-one;
1042
            cursor: pointer;
1043
        }
1044
1045
        .artefact-notes {
1046
            display: none;
1047
            color: $theme-color-two;
1048
1049
            .pin-horizontal {
1050
                border-bottom: .042rem solid $theme-color-two;
1051
                display: inline-block;
1052
                margin: 2.75rem 2rem 0 0;
1053
1054
                &:after {
1055
                    content: '';
1056
                    background-color: #ddd1b9;
1057
                    position: relative;
1058
                    height: .5rem;
1059
                    width: .5rem;
1060
                    border-radius: 50%;
1061
                    display: block;
1062
                    margin-left: auto;
1063
                    top: .25rem;
1064
                }
1065
1066
                .metadata {
1067
                    position: relative;
1068
                    display: flex;
1069
                    align-items: baseline;
1070
1071
                    span {
1072
                        font-size: 12pt;
1073
                        font-weight: $font-weight-two;
1074
                    }
1075
1076
                    .arrow-down {
1077
                        position: relative;
1078
                        top: 0;
1079
                        right: 0;
1080
                        width: 0;
1081
                        height: 0;
1082
                        border-left: 0.25rem solid transparent;
1083
                        border-right: 0.25rem solid transparent;
1084
                        border-top: 0.25rem solid $theme-color-two;
1085
                        margin: 0 0.5rem 0 0.5rem;
1086
                    }
1087
                }
1088
            }
1089
1090
            .white-pin {
1091
                color: $theme-color-one;
1092
                border-bottom: .042rem solid $theme-color-one;
1093
1094 aed76813 Adam Mištera
                &:after {
1095 0218d5c7 Adam Mištera
                    content: '';
1096
                    background-color: $theme-color-one;
1097
                }
1098
1099
                .metadata {
1100
                    .arrow-down {
1101
                        border-top: 0.25rem solid $theme-color-one;
1102
                    }
1103
                }
1104
            }
1105
1106
            .metadata-text {
1107
                font-size: 12pt;
1108
                color: $theme-color-one;
1109
                padding-top: 10px;
1110
                padding-left: 25px;
1111
                padding-right: 25px;
1112
1113
                .inter_like {
1114
1115
                    &:before {
1116
                        background-image: url(../images/interface/Heart_Empty.svg);
1117
                        width: 5rem;
1118
                        height: 5rem;
1119
                    }
1120
1121
                    &:hover, &:focus, &:active {
1122
                        background-color: transparent !important;
1123
                        border-color: transparent !important;
1124
                        outline: none !important;
1125
                        box-shadow: none !important;
1126
                    }
1127
                }
1128
1129
                .inter_like_filled {
1130
1131
                    &:before {
1132
                        background-image: url(../images/interface/Heart_Filled.svg);
1133
                        width: 5rem;
1134
                        height: 5rem;
1135
                    }
1136
1137
                    &:hover, &:focus, &:active {
1138
                        background-color: transparent !important;
1139
                        border-color: transparent !important;
1140
                        outline: none !important;
1141
                        box-shadow: none !important;
1142
                    }
1143
                }
1144
            }
1145
        }
1146
1147
        .inter_info {
1148
1149
            float: right;
1150
            color: $theme-color-one;
1151
            padding-right: 1rem;
1152
1153
            &:before {
1154
                background-image: url(../images/interface/Button_Info_White.svg);
1155
                width: 1.875rem;
1156
                height: 1.875rem;
1157
            }
1158
1159
            &:hover, &:focus, &:active {
1160
                background-color: transparent !important;
1161
                border-color: transparent !important;
1162
                outline: none !important;
1163
                box-shadow: none !important;
1164
            }
1165
        }
1166
    }
1167
}
1168
1169 df15f2e5 Marek Lovčí
@media (max-width: 610px) {
1170
    .js-cookie-consent-agree {
1171
        margin-bottom: 1rem;
1172
    }
1173
}
1174
1175 1c3121fe zabran
@media screen and (max-height: 450px) {
1176 d79e27be Marek Lovčí
    .sidenav a {
1177
        font-size: 18px;
1178
    }
1179 54610fab zabran
    .down {
1180
        bottom: unset;
1181
        margin-bottom: unset;
1182
    }
1183 1c3121fe zabran
}
1184
1185 c9a0c0b2 zabran
@media (min-width: 1300px) {
1186
    .bar-desktop {
1187
        margin-left: 8vw;
1188
        margin-right: 8vw;
1189
        min-width: 84vw;
1190
    }
1191 d79e27be Marek Lovčí
}
1192 8075a85b zabran
1193 c9a0c0b2 zabran
@media (max-width: 990px) {
1194 aee27358 zabran
}
1195
1196 c9a0c0b2 zabran
@media (max-width: 770px) {
1197 8bb7ed68 Marek Lovčí
    .logo-kaplicky {
1198
        margin: 0 auto;
1199 79e22cad zabran
        display: block;
1200
    }
1201
    .arrow {
1202
        position: absolute;
1203
        width: 0;
1204
        height: 0;
1205
        margin: 2rem;
1206
        cursor: pointer;
1207
        border: 0.59055rem solid transparent;
1208 8bb7ed68 Marek Lovčí
1209
        &:active, &.active, &:focus {
1210 79e22cad zabran
            outline: none;
1211
            box-shadow: none;
1212
        }
1213
    }
1214
    .arrow-left {
1215
        margin-left: 80%;
1216 6c518068 rizir01
1217 79e22cad zabran
        border-right: 0.59055rem solid $theme-color-five;
1218
        background-color: $theme-color-four !important;
1219 34c0b905 rizir01
    }
1220 79e22cad zabran
    .arrow-right {
1221
        border-left: 0.59055rem solid $theme-color-four;
1222 6c518068 rizir01
1223 79e22cad zabran
        position: fixed;
1224
        z-index: 3;
1225
        top: 0;
1226
        left: 0;
1227 34c0b905 rizir01
    }
1228 8bb7ed68 Marek Lovčí
    .bar-desktop {
1229 79e22cad zabran
        display: none;
1230
    }
1231 8bb7ed68 Marek Lovčí
    .menu-item:active, .menu-item.active {
1232 79e22cad zabran
        color: $theme-color-five;
1233
        background-color: $theme-color-one;
1234
    }
1235 0218d5c7 Adam Mištera
    .books-component {
1236 8bb7ed68 Marek Lovčí
        .info-area {
1237 0218d5c7 Adam Mištera
            padding-left: 1.5625rem;
1238
        }
1239
    }
1240 c9a0c0b2 zabran
}
1241
1242
@media only screen and (max-width: 540px) {
1243
    .sidenav {
1244
        width: 0;
1245
    }
1246
    .head-title.text-center h1 {
1247
        font-size: 23pt;
1248
        padding-top: 50pt;
1249
        white-space: nowrap;
1250
    }
1251 79e22cad zabran
1252 34c0b905 rizir01
1253 c0265e9e zabran
    /*.btn-circle.rounded-circle.btn-sm
1254 34c0b905 rizir01
    {
1255
        width: 90px;
1256
        height: 90px;
1257
    }
1258
1259
    .btn-circle.rounded-circle.btn-dm
1260
    {
1261
        width: 130px;
1262
        height: 130px;
1263
    }
1264
1265
    .btn-circle.rounded-circle.btn-xl
1266
    {
1267
        width: 180px;
1268
        height: 180px;
1269 c0265e9e zabran
    }*/
1270 d668e889 Adam Mištera
1271 d79e27be Marek Lovčí
    body {
1272 d668e889 Adam Mištera
        .carousel {
1273
            .carousel-inner {
1274
                .social-logo {
1275
                    padding-left: 30px;
1276
                    top: 20%;
1277
                }
1278
            }
1279
        }
1280
    }
1281
}
1282
1283 d79e27be Marek Lovčí
@media (min-width: 330px) and (max-height: 900px) {
1284
    body {
1285 d668e889 Adam Mištera
        .carousel {
1286
            .carousel-inner {
1287
                .social-logo {
1288
                    top: 25%;
1289
                }
1290
            }
1291
        }
1292
    }
1293
}
1294 f5ea2a43 Adam Mištera
1295
@media (min-width: 1024px) {
1296
1297
    body {
1298 8bb7ed68 Marek Lovčí
        .kaplicky {
1299 f5ea2a43 Adam Mištera
            text-align: left !important;
1300 a37ca88b zabran
            //font-size: 24pt;
1301
            font-size: 30pt;
1302 f5ea2a43 Adam Mištera
            line-height: 24pt;
1303 a37ca88b zabran
            margin-bottom: 3rem;
1304
            //margin-left: 1rem;
1305 f5ea2a43 Adam Mištera
        }
1306
1307
        .text {
1308
            text-align: left;
1309
            font-size: 18pt;
1310
            line-height: 26pt;
1311
        }
1312 a37ca88b zabran
        .text2 {
1313
            text-align: left;
1314
            font-size: 18pt;
1315
            line-height: 26pt;
1316
        }
1317 f5ea2a43 Adam Mištera
1318
        .carousel {
1319
            .carousel-inner {
1320
                .social-logo {
1321
                    justify-content: center;
1322
                    top: 90%;
1323
1324
                    .logo {
1325
                        margin-left: 10rem;
1326
1327
                        img {
1328
                            width: 3.125rem;
1329
                        }
1330
1331
                        &:first-child {
1332
                            margin-left: 0;
1333
                        }
1334
                    }
1335
                }
1336 8bb7ed68 Marek Lovčí
1337 f5ea2a43 Adam Mištera
                .carousel-button {
1338 c6265547 Adam Mištera
                    bottom: 15%;
1339 f5ea2a43 Adam Mištera
                }
1340
            }
1341
1342 8bb7ed68 Marek Lovčí
            .carousel-caption {
1343 c6265547 Adam Mištera
                padding: 3.75rem 6.25rem 5em;
1344 f5ea2a43 Adam Mištera
1345
                h2 {
1346
                    margin-bottom: 1rem;
1347
                }
1348
            }
1349
        }
1350
1351
        .button-square {
1352
            font-size: 18pt;
1353 7b6d8d72 Adam Mištera
            padding: 0.28125rem 3.7rem;
1354 f5ea2a43 Adam Mištera
        }
1355
    }
1356
}
1357 c6265547 Adam Mištera
1358
@media (min-width: 1575px) {
1359
    body {
1360
        .carousel {
1361
            .carousel-inner {
1362
                .carousel-button {
1363
                    bottom: 20%;
1364
                }
1365
            }
1366
        }
1367
    }
1368
}