Projekt

Obecné

Profil

Stáhnout (5.6 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
            img {
18
                filter: grayscale(100%);
19
            }
20
        }
21

    
22
        .carousel-caption {
23
            top: 20%;
24
            bottom: 20%;
25
            background-color:  rgba(239, 218, 179, 0.5);
26

    
27
            h2 {
28
                font-size: 11pt;
29
                letter-spacing: 3pt;
30
                color: $white;
31

    
32
            }
33

    
34
            p {
35
                font-size: 9pt;
36
                color: $black;
37
            }
38
        }
39
    }
40
    
41
    .card-body {
42
    	background-color: $cusBlack;
43
    	font-family: Avenir;
44
    	color: $cusBrown3;
45
	}
46

    
47
	.btn-primary {
48
    	background-color: $cusBlack;
49
    	border-color: $cusWhite;
50
	}
51

    
52
	.btn-primary:hover {
53
    	background-color: $cusWhite;
54
    	color: $cusBlack;
55
    	border-color: $cusWhite;
56
	}
57

    
58
	.btn-primary:focus {
59
    	background-color: $cusWhite;
60
    	color: $cusBlack;
61
    	border-color: $cusWhite;
62
    	outline: none !important;
63
    	box-shadow: none !important;
64
	}
65

    
66
	.btn-primary:active {
67
    	background-color: $cusWhite;
68
    	color: $cusBlack;
69
    	border-color: $cusWhite;
70
    	outline: none !important;
71
    	box-shadow: none !important;
72
    	background-color: transparent !important;
73
    	border-color: transparent !important;
74
	}
75

    
76
	.form-control {
77
    	background-color: $cusBlack;
78
    	margin-top: -1px;
79
    	//border: 0px;
80
    	//border-bottom: 1px;
81
    	border-top-color: $cusBlack;
82
    	border-left-color: $cusBlack;
83
    	border-right-color: $cusBlack;
84
    	border-bottom-color: $cusWhite;
85
    	color: $cusWhite;
86
	}
87

    
88
    .button-square {
89
        background-color: $black;
90
        color: $white;
91
        border: 1pt solid $white;
92
        border-radius: 0;
93
    }
94

    
95
    .button-image {
96
        background-color: transparent;
97
        border-color: transparent;
98

    
99
        &:before {
100
            content: "";
101
            width: 100px;
102
            height: 100px;
103
            display: inline-block;
104
            margin-right: 5px;
105
            vertical-align: text-top;
106
            background-color: transparent;
107
            background-position : center center;
108
            background-repeat:no-repeat;
109
        }
110
    }
111

    
112
    .monButton {
113

    
114
        &:before {
115
            background-image : url(../images/Button_Arrow_Small.png);
116
        }
117

    
118
        &:hover {
119
            background-color: transparent;
120
            border-color: $cusBrown3;
121
        }
122

    
123
        &:focus {
124
            background-color: transparent;
125
            border-color: $cusBrown3;
126
            outline: none !important;
127
            box-shadow: none !important;
128
        }
129

    
130
        &:active {
131
            background-color: transparent !important;
132
            border-color: transparent !important;
133
            outline: none !important;
134
            box-shadow: none !important;
135
        }
136
    }
137

    
138

    
139
    .content {
140
        position: relative;
141

    
142
        //Circle style button
143
        .btn-circle.rounded-circle.btn-sm {
144
            position: absolute;
145
            width: 120px;
146
            height: 120px;
147
            padding: 6px 0px;
148
            border-radius: 15px;
149
            font-size: 16px;
150
            text-align: center;
151
            background-color: $cusBlack;
152
            border-color: $cusBrown3;
153
            border-width: 5px;
154
            color:$cusBrown3;
155
            outline: none !important;
156
            box-shadow: none !important;
157

    
158
            &:active {
159
                background-color: $cusBrown2;
160
                border-color: $cusBrown3;
161
                outline: none !important;
162
                box-shadow: none !important;
163
                color:$cusBlack;
164
            }
165
        }
166

    
167
        .btn-circle.rounded-circle.btn-dm
168
        {
169
            position: absolute;
170
            width: 240px;
171
            height: 240px;
172
            padding: 6px 0;
173
            border-radius: 15px;
174
            font-size: 16px;
175
            text-align: center;
176
            background-color: $cusBlack;
177
            border-color: $cusBrown3;
178
            color:$cusBrown3;
179
            border-width: 5px;
180
            outline: none !important;
181
            box-shadow: none !important;
182

    
183
            &:active {
184
                background-color: $cusBrown2;
185
                border-color: $cusBrown3;
186
                outline: none !important;
187
                box-shadow: none !important;
188
                color:$cusBlack;
189
            }
190
        }
191

    
192
        .btn-circle.rounded-circle.btn-xl
193
        {
194
            position: absolute;
195
            width: 360px;
196
            height: 360px;
197
            padding: 6px 0px;
198
            border-radius: 15px;
199
            font-size: 16px;
200
            text-align: center;
201
            background-color: $cusBlack;
202
            border-color: $cusBrown3;
203
            color:$cusBrown3;
204
            border-width: 5px;
205
            outline: none !important;
206
            box-shadow: none !important;
207

    
208
            &:active {
209
                background-color: $cusBrown2;
210
                border-color: $cusBrown3;
211
                outline: none !important;
212
                box-shadow: none !important;
213
                color:$cusBlack;
214
            }
215
        }
216
    }
217
}
218

    
219

    
220

    
221
@media only screen and (max-width: 540px)
222
{
223
    .head-title.text-center h1
224
    {
225
        font-size: 45pt;
226
    }
227

    
228
    .btn-circle.rounded-circle.btn-sm
229
    {
230
        width: 90px;
231
        height: 90px;
232
    }
233

    
234
    .btn-circle.rounded-circle.btn-dm
235
    {
236
        width: 130px;
237
        height: 130px;
238
    }
239

    
240
    .btn-circle.rounded-circle.btn-xl
241
    {
242
        width: 180px;
243
        height: 180px;
244
    }
245
}
(1-1/3)