Projekt

Obecné

Profil

Stáhnout (4.56 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-size: 60pt;
10
        font-weight: bold;
11
        letter-spacing: 3px;
12
    }
13

    
14
    .carousel {
15
        .carousel-inner {
16
            img {
17
                filter: grayscale(100%);
18
            }
19
        }
20

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

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

    
31
            }
32

    
33
            p {
34
                font-size: 9pt;
35
                color: $black;
36
            }
37
        }
38
    }
39

    
40
    .button-square {
41
        background-color: $black;
42
        color: $white;
43
        border: 1pt solid $white;
44
        border-radius: 0;
45
    }
46

    
47
    .button-image {
48
        background-color: transparent;
49
        border-color: transparent;
50

    
51
        &:before {
52
            content: "";
53
            width: 100px;
54
            height: 100px;
55
            display: inline-block;
56
            margin-right: 5px;
57
            vertical-align: text-top;
58
            background-color: transparent;
59
            background-position : center center;
60
            background-repeat:no-repeat;
61
        }
62
    }
63

    
64
    .monButton {
65

    
66
        &:before {
67
            background-image : url(../images/Button_Arrow_Small.png);
68
        }
69

    
70
        &:hover {
71
            background-color: transparent;
72
            border-color: $cusBrown3;
73
        }
74

    
75
        &:focus {
76
            background-color: transparent;
77
            border-color: $cusBrown3;
78
            outline: none !important;
79
            box-shadow: none !important;
80
        }
81

    
82
        &:active {
83
            background-color: transparent !important;
84
            border-color: transparent !important;
85
            outline: none !important;
86
            box-shadow: none !important;
87
        }
88
    }
89

    
90

    
91
    .content {
92
        position: relative;
93

    
94
        //Circle style button
95
        .btn-circle.rounded-circle.btn-sm {
96
            position: absolute;
97
            width: 120px;
98
            height: 120px;
99
            padding: 6px 0px;
100
            border-radius: 15px;
101
            font-size: 16px;
102
            text-align: center;
103
            background-color: $cusBlack;
104
            border-color: $cusBrown3;
105
            border-width: 5px;
106
            color:$cusBrown3;
107
            outline: none !important;
108
            box-shadow: none !important;
109

    
110
            &:active {
111
                background-color: $cusBrown2;
112
                border-color: $cusBrown3;
113
                outline: none !important;
114
                box-shadow: none !important;
115
                color:$cusBlack;
116
            }
117
        }
118

    
119
        .btn-circle.rounded-circle.btn-dm
120
        {
121
            position: absolute;
122
            width: 240px;
123
            height: 240px;
124
            padding: 6px 0;
125
            border-radius: 15px;
126
            font-size: 16px;
127
            text-align: center;
128
            background-color: $cusBlack;
129
            border-color: $cusBrown3;
130
            color:$cusBrown3;
131
            border-width: 5px;
132
            outline: none !important;
133
            box-shadow: none !important;
134

    
135
            &:active {
136
                background-color: $cusBrown2;
137
                border-color: $cusBrown3;
138
                outline: none !important;
139
                box-shadow: none !important;
140
                color:$cusBlack;
141
            }
142
        }
143

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

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

    
171

    
172

    
173
@media only screen and (max-width: 540px)
174
{
175
    .head-title.text-center h1
176
    {
177
        font-size: 45pt;
178
    }
179

    
180
    .btn-circle.rounded-circle.btn-sm
181
    {
182
        width: 90px;
183
        height: 90px;
184
    }
185

    
186
    .btn-circle.rounded-circle.btn-dm
187
    {
188
        width: 130px;
189
        height: 130px;
190
    }
191

    
192
    .btn-circle.rounded-circle.btn-xl
193
    {
194
        width: 180px;
195
        height: 180px;
196
    }
197
}
(1-1/3)