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
        .btn{
84
            font-size: 8pt;
85
        }
86

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

    
97
        .button-square {
98
            width: 100pt;
99
        }
100
    }
101

    
102
    .card-body {
103
    	background-color: $cusBlack;
104
    	font-family: Avenir;
105
    	color: $cusBrown3;
106

    
107
	}
108

    
109
    .logo{
110
        color: $cusWhite;
111
        font-size: 11pt;
112
        font-family: Avenir Black;
113
        width: 100pt;
114
        letter-spacing: 1pt;
115
    }
116

    
117
	.form-control {
118
    	background-color: $cusBlack;
119
    	margin-top: -1px;
120
    	//border-bottom: 1px;
121
    	border-top-color: $cusBlack;
122
    	border-left-color: $cusBlack;
123
    	border-right-color: $cusBlack;
124
    	border-bottom-color: 0.5pt $cusWhite;
125
    	color: $cusWhite;
126
        box-shadow: none;
127
        //transition: none;
128
        font-size: 8pt;
129
	}
130

    
131
    .form-control:focus {
132
        background-color: $cusBlack;
133
        margin-top: -1px;
134
        //border-bottom: 1px;
135
        border-top-color: $cusBlack;
136
        border-left-color: $cusBlack;
137
        border-right-color: $cusBlack;
138
        border-bottom-color: 0.5pt $cusWhite;
139
        color: $cusWhite;
140
        box-shadow: none;
141
        //transition: none;
142
        font-size: 8pt;
143
    }
144

    
145
    .button-square {
146
        font-size: 8pt;
147
        background-color: $cusBlack;
148
        color: $white;
149
        border: 0.5pt solid $white;
150
        border-radius: 0;
151
        width: 28mm;
152
        height: 8mm;
153
    }
154

    
155
    .button-image {
156
        background-color: transparent;
157
        border-color: transparent;
158

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

    
172
    .monButton {
173

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

    
178
        &:hover {
179
            background-color: transparent;
180
            border-color: $cusBrown3;
181
        }
182

    
183
        &:focus {
184
            background-color: transparent;
185
            border-color: $cusBrown3;
186
            outline: none !important;
187
            box-shadow: none !important;
188
        }
189

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

    
198

    
199
    .content {
200
        position: relative;
201

    
202
        //Circle style button
203
        .btn-circle.rounded-circle.btn-sm {
204
            position: absolute;
205
            width: 120px;
206
            height: 120px;
207
            padding: 6px 0px;
208
            border-radius: 15px;
209
            font-size: 16px;
210
            text-align: center;
211
            background-color: $cusBlack;
212
            border-color: $cusBrown3;
213
            border-width: 5px;
214
            color:$cusBrown3;
215
            outline: none !important;
216
            box-shadow: none !important;
217

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

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

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

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

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

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

    
286
    .btn-circle.rounded-circle.btn-sm
287
    {
288
        width: 90px;
289
        height: 90px;
290
    }
291

    
292
    .btn-circle.rounded-circle.btn-dm
293
    {
294
        width: 130px;
295
        height: 130px;
296
    }
297

    
298
    .btn-circle.rounded-circle.btn-xl
299
    {
300
        width: 180px;
301
        height: 180px;
302
    }
303
}
304

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

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