Projekt

Obecné

Profil

Stáhnout (12.5 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

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

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

    
27
            .social-logo {
28
                text-align: center;
29
                justify-content: space-between;
30
                flex-wrap: nowrap;
31
                position: absolute;
32
                top: 25%;
33
                padding-left: 25px;
34
                width: 100%;
35
                z-index: 1;
36
            }
37

    
38
            .carousel-button {
39
                bottom: 10%;
40
                left: 50%;
41
                transform: translateX(-50%);
42
                position: absolute;
43
                z-index: 1;
44
            }
45

    
46
            .carousel-item {
47
                height: 100vh;
48
                min-height: 350px;
49
                background: no-repeat center center scroll;
50
                -webkit-background-size: cover;
51
                -moz-background-size: cover;
52
                -o-background-size: cover;
53
                background-size: cover;
54
            }
55
        }
56

    
57
        .carousel-caption {
58
            top: 50%;
59
            bottom: auto;
60
            transform: translateY(-50%);
61
            background-color:  rgba(239, 218, 179, 0.5);
62

    
63
            p {
64
                font-size: 8pt;
65
                color: $theme-color-five;
66
            }
67
        }
68
    }
69

    
70
    /////////text types
71
    //většina běžných textů
72
    .text {
73
        font-weight: $font-weight-one;
74
        font-size: 8pt;
75
        line-height: 9pt;
76
    }
77

    
78
    //text inputu a název artefaktů
79
    .text2{
80
        font-weight: $font-weight-two;
81
        font-size: 8pt;
82
    }
83

    
84
    //název "kaplicky" a "choose a few" v categories (tam má jinou barvu)
85
    .kaplicky{
86
        color: $theme-color-one;
87
        font-size: 11pt;
88
        font-weight: $font-weight-three;
89
        letter-spacing: 3pt;
90
    }
91

    
92
    //autor artefaktu
93
    .text-author{
94
        font-weight: $font-weight-one;
95
        font-size: 7pt;
96
        color: $theme-color-four;
97
    }
98

    
99
    //počet lajků
100
    .text-number{
101
        font-weight: $font-weight-two;
102
        font-size: 5pt;
103
        color: $theme-color-four;
104
    }
105

    
106
    //notes u metadat, about v about, text levého menu
107
    .text-headline{
108
        font-weight: $font-weight-two;
109
        font-size: 12pt;
110
        color: $theme-color-four;
111
    }
112

    
113
    //název metadata, text pravého menu
114
    .text-page{
115
        font-weight: $font-weight-two;
116
        font-size: 7pt;
117
    }
118

    
119
    ////color pro změnu jen barvy
120
    .black{
121
        color: $theme-color-five;
122
    }
123
    .white{
124
        color: $theme-color-one;
125
    }
126
    .colored{
127
        color: $theme-color-four;
128
    }
129

    
130

    
131
    ////login
132
    .auth{
133
        .card{
134
            border: none;
135
            text-align: center;
136
            font-size: 8pt;
137
        }
138

    
139
        .col-form-label{
140
            text-align: left;
141
            padding-top: 0px;
142
            padding-bottom: 0px;
143
        }
144
        .form-control{
145
            padding: 0px;
146
            height: 17pt;
147
            border-radius: 0%;
148
        }
149
    }
150

    
151
    .card-body {
152
    	background-color: $theme-color-five;
153
    	font-weight: $font-weight-one;
154
    	color: $theme-color-four;
155

    
156
	}
157

    
158
	.form-control {
159
    	background-color: $theme-color-five;
160
    	margin-top: -1px;
161
    	border-top-color: $theme-color-five;
162
    	border-left-color: $theme-color-five;
163
    	border-right-color: $theme-color-five;
164
    	border-bottom-color: 0.5pt $theme-color-one;
165
    	color: $theme-color-one;
166
        box-shadow: none;
167
        font-size: 8pt;
168

    
169
        &:active, &:focus, &:visited{
170
            background-color: $theme-color-five;
171
            margin-top: -1px;
172
            border-top-color: $theme-color-five;
173
            border-left-color: $theme-color-five;
174
            border-right-color: $theme-color-five;
175
            border-bottom-color: 0.5pt $theme-color-one;
176
            color: $theme-color-one;
177
            box-shadow: none;
178
        }
179

    
180
	}
181
    .form-control.is-invalid{
182
        box-shadow: none;
183
        border-color: $theme-color-four;
184
        background-image: none;
185
        &:active, &:focus, &:visited{
186
            box-shadow: none;
187
            border-color: $theme-color-four;
188
        }
189
    }
190

    
191
    /*.form-control:focus {
192
        background-color: $theme-color-five;
193
        margin-top: -1px;
194
        border-top-color: $theme-color-five;
195
        border-left-color: $theme-color-five;
196
        border-right-color: $theme-color-five;
197
        border-bottom-color: 0.5pt $theme-color-one;
198
        color: $theme-color-one;
199
        box-shadow: none;
200
        font-size: 8pt;
201
    }*/
202

    
203
    .button-square {
204
        font-size: 8pt;
205
        background-color: $theme-color-five;
206
        color: $theme-color-one;
207
        border: 0.5pt solid $theme-color-one;
208
        border-radius: 0;
209
        width: 6.5rem;
210
        height: 2rem;
211
        font-weight: $font-weight-one;
212

    
213
        &:active, &:focus, &:visited {
214
            outline: none;
215
            box-shadow: none;
216
        }
217
    }
218

    
219
    //spendlik
220
    .pin-left:before {
221
        content: '';
222
        position: relative;
223
        height: 0.35433rem;
224
        width: 0.35433rem;
225
        background-color: $theme-color-one;
226
        border-radius: 50%;
227
        display: inline-block;
228
        top: -0.35433rem;
229
        left: -0.2rem;
230

    
231
    }
232

    
233
    .pin-left {
234
        border-left: .5pt solid $theme-color-four;
235
        display: inline-block;
236
        //margin: 50px;
237
        //margin-bottom: 0pt;
238
        margin: 10rem 50px 0px -5rem;
239
        //min-height: 75vh;
240
        //height: auto;
241
        position: fixed;
242
        top: 0;
243
        bottom: 0;
244
        text-align: left;
245
        width: 100%;
246
        .text{
247
            //padding-top: 5rem;//0.35433rem;
248
            //margin-top: 5rem;
249
            //top: 5rem;
250
            margin-left: 0.5rem;
251
        }
252
        p{
253
            margin-top: 0pt;
254
            margin-bottom: 0pt;
255
        }
256
    }
257

    
258
    footer {
259
        background: $theme-color-four;
260
        color: $theme-color-five;
261
        display: block;
262
        height: 50px;
263
        position: fixed;
264
        left: 0;
265
        bottom: 0;
266
        width: 100%;
267
    }
268

    
269
    .button-image {
270
        background-color: transparent;
271
        border-color: transparent;
272

    
273
        &:before {
274
            content: "";
275
            width: 100px;
276
            height: 100px;
277
            display: inline-block;
278
            margin-right: 5px;
279
            vertical-align: text-top;
280
            background-color: transparent;
281
            background-position : center center;
282
            background-repeat:no-repeat;
283
        }
284
    }
285

    
286
    .artefacts-area {
287

    
288
        h5 {
289
            color: $theme-color-two;
290
            font-weight: $font-weight-two;
291
            line-height: 20pt;
292
            font-size: 21pt;
293
        }
294

    
295
        h6 {
296
            color: $theme-color-two;
297
            font-size: 14pt;
298
            //font-weight: lighter;
299
            font-weight: $font-weight-one;
300
        }
301

    
302
        img {
303
            border: transparent;
304
            border-radius: 1px;
305
        }
306

    
307
        .card {
308
            margin: 10px;
309
            border: none !important;
310
        }
311

    
312
        .left_panel_info {
313
            margin-top: 15px;
314
            margin-left: -10px;
315
            max-width: 250px;
316
        }
317

    
318
        .right_panel_info {
319
            margin-top: 15px;
320
            margin-right: -15px;
321
        }
322

    
323
        .card-cus-bottom {
324
            background-color: $theme-color-five;
325
        }
326

    
327
        .inter_info {
328
            &:before {
329
                background-image: url(../images/interface/Button_Info_50.png);
330
                width: 60px;
331
                height: 60px;
332
            }
333
        }
334

    
335
        .inter_like {
336
            display: none;
337
            &:before {
338
                background-image : url(../images/interface/Hearth_Empty_50.png);
339
                width: 60px;
340
                height: 60px;
341
            }
342
        }
343

    
344
        .inter_like_filled {
345
            &:before {
346
                background-image : url(../images/interface/Hearth_Filled_50.png);
347
                width: 60px;
348
                height: 60px;
349
            }
350
        }
351

    
352
        .inter_info, .inter_like, .inter_like_filled {
353
            padding: 0;
354
            &:focus, &:active, &:hover {
355
                background-color: transparent !important;
356
                border-color: transparent !important;
357
                outline: none !important;
358
                box-shadow: none !important;
359
            };
360
        }
361
    }
362

    
363
    .content {
364
    position: relative;
365

    
366
    //Circle style button
367
    //Toto možná nebude zcela optimální pro ostatní circle buttony. Nehodící se propagujte do btn-categories.
368
    .btn-circle.rounded-circle {
369
        padding: 6px 0px;
370
        font-size: 16px;
371
        text-align: center;
372
    }
373

    
374
    .btn-categories {
375
        position: absolute;
376
        border-width: 5px;
377
        background-color: $theme-color-five;
378
        border-color: $theme-color-four;
379
        color: $theme-color-four;
380
        outline: none !important;
381
        box-shadow: none !important;
382
        font-weight: $font-weight-two;
383

    
384
        &:active {
385
            background-color: $theme-color-three;
386
            border-color: $theme-color-four;
387
            outline: none !important;
388
            box-shadow: none !important;
389
            color: $theme-color-five;
390
        }
391
    }
392
}
393

    
394
    //CATEGORIES - TILES
395
    .btn.btn-dark.cat-tile
396
    {
397
        //STYLING
398
        border-color: $theme-color-four;
399
        border-radius: 0;
400
        border-style: solid;
401
        border-width: 2px;
402
        color: $theme-color-four;
403
        background-color: $theme-color-five;
404
        text-align: center;
405
        outline: none !important;
406
        box-shadow: none !important;
407

    
408
        //FONT
409
        font-size: 8mm;
410
        word-wrap: break-word;
411

    
412
        //SPACING
413
        margin: 10pt 32pt;
414
        height: 40mm;
415
        width: 86%;
416

    
417
        &:active, &:focus
418
        {
419
            background-color: $theme-color-three;
420
            border-color: $theme-color-four;
421
            outline: none !important;
422
            box-shadow: none !important;
423
            color: $theme-color-five;
424
        }
425
    }
426

    
427
    //CATEGORIES - enter button
428
    .btn.button-square.cat-enter-butt
429
    {
430
        position: fixed;
431
        bottom: 8%;
432
        right: 45%;
433
        display: none;
434
    }
435
}
436

    
437
.arrow{
438
    position: absolute;
439
    width: 0;
440
    height: 0;
441
    margin: 2rem;
442
    cursor:pointer;
443
    border: 0.59055rem solid transparent;
444
}
445

    
446
.arrow-left {
447
    margin-left: 80%;
448

    
449
    border-right:0.59055rem solid $theme-color-five;
450
    background-color: $theme-color-four !important;
451
}
452

    
453
.arrow-right {
454
    border-left:0.59055rem solid $theme-color-four;
455

    
456
    position: fixed;
457
    z-index: 1;
458
    top: 0;
459
    left: 0;
460
}
461

    
462
.sidenav {
463
    height: 100%;
464
    width: 0;
465
    position: fixed;
466
    z-index: 1;
467
    top: 0;
468
    left: 0;
469
    background-color: $theme-color-four;
470
    overflow-x: hidden;
471
    transition: 0.5s;
472
}
473

    
474
.sidenav a {
475
    text-decoration: none;
476
    color: $theme-color-five;
477
    display: block;
478
    transition: 0.3s;
479
}
480

    
481
.sidenav a:hover {
482
    color: $theme-color-four;
483
    background-color: $theme-color-one;
484
}
485

    
486
@media screen and (max-height: 450px) {
487
    //.sidenav {padding-top: 15px;}
488
    .sidenav a {font-size: 18px;}
489
}
490

    
491
@media (max-width: 990px) {
492
    body {
493
        /*.pin-left {
494
            margin-left: -15rem;
495
            margin-top: 11rem;
496
        }*/
497
    }
498
}
499

    
500
@media (max-width: 770px) {
501
    body {
502
        .pin-left {
503
            margin-left: -33vw;
504
            margin-top: 12rem;
505
            //left: 20vw;
506
        }
507
    }
508
}
509

    
510
@media only screen and (max-width: 540px)
511
{
512
    .head-title.text-center h1
513
    {
514
        font-size: 23pt;
515
        padding-top: 50pt;
516
        margin-left: 36pt;
517
        white-space: nowrap;
518
    }
519

    
520
    .btn-circle.rounded-circle.btn-sm
521
    {
522
        width: 90px;
523
        height: 90px;
524
    }
525

    
526
    .btn-circle.rounded-circle.btn-dm
527
    {
528
        width: 130px;
529
        height: 130px;
530
    }
531

    
532
    .btn-circle.rounded-circle.btn-xl
533
    {
534
        width: 180px;
535
        height: 180px;
536
    }
537

    
538
    body{
539
        .carousel {
540
            .carousel-inner {
541
                .social-logo {
542
                    padding-left: 30px;
543
                    top: 20%;
544
                }
545
            }
546
        }
547
    }
548
}
549

    
550
@media (min-width: 330px) and (max-height: 900px)
551
{
552
    body{
553
        .carousel {
554
            .carousel-inner {
555
                .social-logo {
556
                    top: 25%;
557
                }
558
            }
559
        }
560
    }
561
}
(1-1/3)