Projekt

Obecné

Profil

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

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

    
7
    .head-title h1 {
8
        color: $cusWhite;
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: $black;
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: $cusBlack;
97
    	font-family: Avenir;
98
    	color: $cusBrown3;
99

    
100
	}
101

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

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

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

    
138
    .button-square {
139
        font-size: 8pt;
140
        background-color: $cusBlack;
141
        color: $white;
142
        border: 0.5pt solid $white;
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: $cusBrown3;
179
        }
180

    
181
        &:focus {
182
            background-color: transparent;
183
            border-color: $cusBrown3;
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
        .btn-circle.rounded-circle.btn-sm {
201
            position: absolute;
202
            width: 120px;
203
            height: 120px;
204
            padding: 6px 0px;
205
            border-radius: 15px;
206
            font-size: 16px;
207
            text-align: center;
208
            background-color: $cusBlack;
209
            border-color: $cusBrown3;
210
            border-width: 5px;
211
            color:$cusBrown3;
212
            outline: none !important;
213
            box-shadow: none !important;
214

    
215
            &:active {
216
                background-color: $cusBrown2;
217
                border-color: $cusBrown3;
218
                outline: none !important;
219
                box-shadow: none !important;
220
                color:$cusBlack;
221
            }
222
        }
223

    
224
        .btn-circle.rounded-circle.btn-dm
225
        {
226
            position: absolute;
227
            width: 240px;
228
            height: 240px;
229
            padding: 6px 0;
230
            border-radius: 15px;
231
            font-size: 16px;
232
            text-align: center;
233
            background-color: $cusBlack;
234
            border-color: $cusBrown3;
235
            color:$cusBrown3;
236
            border-width: 5px;
237
            outline: none !important;
238
            box-shadow: none !important;
239

    
240
            &:active {
241
                background-color: $cusBrown2;
242
                border-color: $cusBrown3;
243
                outline: none !important;
244
                box-shadow: none !important;
245
                color:$cusBlack;
246
            }
247
        }
248

    
249
        .btn-circle.rounded-circle.btn-xl
250
        {
251
            position: absolute;
252
            width: 360px;
253
            height: 360px;
254
            padding: 6px 0px;
255
            border-radius: 15px;
256
            font-size: 16px;
257
            text-align: center;
258
            background-color: $cusBlack;
259
            border-color: $cusBrown3;
260
            color:$cusBrown3;
261
            border-width: 5px;
262
            outline: none !important;
263
            box-shadow: none !important;
264

    
265
            &:active {
266
                background-color: $cusBrown2;
267
                border-color: $cusBrown3;
268
                outline: none !important;
269
                box-shadow: none !important;
270
                color:$cusBlack;
271
            }
272
        }
273
    }
274
}
275

    
276
@media only screen and (max-width: 540px)
277
{
278
    .head-title.text-center h1
279
    {
280
        font-size: 45pt;
281
    }
282

    
283
    .btn-circle.rounded-circle.btn-sm
284
    {
285
        width: 90px;
286
        height: 90px;
287
    }
288

    
289
    .btn-circle.rounded-circle.btn-dm
290
    {
291
        width: 130px;
292
        height: 130px;
293
    }
294

    
295
    .btn-circle.rounded-circle.btn-xl
296
    {
297
        width: 180px;
298
        height: 180px;
299
    }
300
}
301

    
302
@media only screen and (max-width: 540px)
303
{
304
    body{
305
        .carousel {
306
            .carousel-inner {
307
                .social-logo {
308
                    padding-left: 30px;
309
                    top: 20%;
310
                }
311
            }
312
        }
313
    }
314
}
315

    
316
@media (min-width: 330px) and (max-height: 900px)
317
{
318
    body{
319
        .carousel {
320
            .carousel-inner {
321
                .social-logo {
322
                    top: 25%;
323
                }
324
            }
325
        }
326
    }
327
}
(1-1/3)