Projekt

Obecné

Profil

Stáhnout (6.72 KB) Statistiky
| Větev: | Tag: | Revize:
1
// Ready for custom styling
2

    
3
body {
4
    //font-family: 'Nunito Sans', sans-serif;
5
    background-color: $theme-color-five;
6

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

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

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

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

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

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

    
62
            /*h2 {
63
                font-family: Avenir Black;
64
                font-size: 11pt;
65
                letter-spacing: 3pt;
66
                color: $white;
67

    
68
            }*/
69

    
70
            p {
71
                font-size: 8pt;
72
                color: $theme-color-five;
73
            }
74
        }
75
    }
76

    
77
    .auth{
78
        .card{
79
            border: none;
80
            text-align: center;
81
            font-size: 8pt;
82
        }
83

    
84
        .col-form-label{
85
            text-align: left;
86
            padding-top: 0px;
87
            padding-bottom: 0px;
88
        }
89
        .form-control{
90
            padding: 0px;
91
            height: 17pt;
92
        }
93
    }
94

    
95
    .card-body {
96
    	background-color: $theme-color-five;
97
    	font-family: Avenir;
98
    	color: $theme-color-four;
99

    
100
	}
101

    
102
    .kaplicky{
103
        color: $theme-color-one;
104
        font-size: 11pt;
105
        font-family: Avenir Black;
106
        //width: 100pt;
107
        letter-spacing: 3pt;
108
    }
109

    
110
	.form-control {
111
    	background-color: $theme-color-five;
112
    	margin-top: -1px;
113
    	//border-bottom: 1px;
114
    	border-top-color: $theme-color-five;
115
    	border-left-color: $theme-color-five;
116
    	border-right-color: $theme-color-five;
117
    	border-bottom-color: 0.5pt $theme-color-one;
118
    	color: $theme-color-one;
119
        box-shadow: none;
120
        //transition: none;
121
        font-size: 8pt;
122
	}
123

    
124
    .form-control:focus {
125
        background-color: $theme-color-five;
126
        margin-top: -1px;
127
        //border-bottom: 1px;
128
        border-top-color: $theme-color-five;
129
        border-left-color: $theme-color-five;
130
        border-right-color: $theme-color-five;
131
        border-bottom-color: 0.5pt $theme-color-one;
132
        color: $theme-color-one;
133
        box-shadow: none;
134
        //transition: none;
135
        font-size: 8pt;
136
    }
137

    
138
    .button-square {
139
        font-size: 8pt;
140
        background-color: $theme-color-five;
141
        color: $theme-color-one;
142
        border: 0.5pt solid $theme-color-one;
143
        border-radius: 0;
144
        width: 6.5rem;
145
        height: 2rem;
146

    
147
        &:active, &:focus, &:visited {
148
            outline: none;
149
            box-shadow: none;
150
        }
151
    }
152

    
153
    .button-image {
154
        background-color: transparent;
155
        border-color: transparent;
156

    
157
        &:before {
158
            content: "";
159
            width: 100px;
160
            height: 100px;
161
            display: inline-block;
162
            margin-right: 5px;
163
            vertical-align: text-top;
164
            background-color: transparent;
165
            background-position : center center;
166
            background-repeat:no-repeat;
167
        }
168
    }
169

    
170
    .monButton {
171

    
172
        &:before {
173
            background-image : url(../images/Button_Arrow_Small.png);
174
        }
175

    
176
        &:hover {
177
            background-color: transparent;
178
            border-color: $theme-color-four;
179
        }
180

    
181
        &:focus {
182
            background-color: transparent;
183
            border-color: $theme-color-four;
184
            outline: none !important;
185
            box-shadow: none !important;
186
        }
187

    
188
        &:active {
189
            background-color: transparent !important;
190
            border-color: transparent !important;
191
            outline: none !important;
192
            box-shadow: none !important;
193
        }
194
    }
195

    
196
    .content {
197
        position: relative;
198

    
199
        //Circle style button
200
            //Toto možná nebude zcela optimální pro ostatní circle buttony. Nehodící se propagujte do btn-categories
201
        .btn-circle.rounded-circle {
202
            padding: 6px 0px;
203
            font-size: 16px;
204
            text-align: center;
205
        }
206
        .btn-categories
207
        {
208
            position: absolute;
209
            border-width: 5px;
210
            background-color: $theme-color-five;
211
            border-color: $theme-color-four;
212
            color:$theme-color-four;
213
            outline: none !important;
214
            box-shadow: none !important;
215

    
216
            &:active
217
            {
218
                background-color: $cusBrown2;
219
                border-color: $theme-color-four;
220
                outline: none !important;
221
                box-shadow: none !important;
222
                color:$theme-color-five;
223
            }
224
        }
225

    
226
        .btn-sm
227
        {
228
            width: 120px;
229
            height: 120px;
230
        }
231
        .btn-dm
232
        {
233
            width: 240px;
234
            height: 240px;
235
        }
236
        .btn-xl
237
        {
238
            width: 360px;
239
            height: 360px;
240
        }
241

    
242
    }
243
}
244

    
245
@media only screen and (max-width: 540px)
246
{
247

    
248
    .head-title.text-center h1
249
    {
250
        font-size: 45pt;
251
    }
252

    
253
    .btn-circle.rounded-circle.btn-sm
254
    {
255
        width: 90px;
256
        height: 90px;
257
    }
258

    
259
    .btn-circle.rounded-circle.btn-dm
260
    {
261
        width: 130px;
262
        height: 130px;
263
    }
264

    
265
    .btn-circle.rounded-circle.btn-xl
266
    {
267
        width: 180px;
268
        height: 180px;
269
    }
270

    
271
    body{
272
        .carousel {
273
            .carousel-inner {
274
                .social-logo {
275
                    padding-left: 30px;
276
                    top: 20%;
277
                }
278
            }
279
        }
280
    }
281
}
282

    
283
@media (min-width: 330px) and (max-height: 900px)
284
{
285
    body{
286
        .carousel {
287
            .carousel-inner {
288
                .social-logo {
289
                    top: 25%;
290
                }
291
            }
292
        }
293
    }
294
}
(1-1/3)