Projekt

Obecné

Profil

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

    
3
body
4
{
5
    background-color: $cusBlack;
6
}
7

    
8
.head-title.text-center h1
9
{
10
    color: $cusWhite;
11
    font-family: Avenir;
12
    font-size: 60pt;
13
    font-weight: bold;
14
    letter-spacing: 3px;
15
}
16

    
17
.card-body
18
{
19
    background-color: $cusBlack;
20
    font-family: Avenir;
21
    color: $cusBrown3;
22
}
23

    
24
.btn-primary{
25
    background-color: $cusBlack;
26
    border-color: $cusWhite;
27
}
28

    
29
.form-control{
30
    background-color: $cusBlack;
31
    margin-top: -1px;
32
    //border: 0px;
33
    //border-bottom: 1px;
34
    border-top-color: $cusBlack;
35
    border-left-color: $cusBlack;
36
    border-right-color: $cusBlack;
37
    border-bottom-color: $cusWhite;
38
    color: $cusWhite;
39
}
40

    
41
.bouton-image:before
42
{
43
    content: "";
44
    width: 100px;
45
    height: 100px;
46
    display: inline-block;
47
    margin-right: 5px;
48
    vertical-align: text-top;
49
    background-color: transparent;
50
    background-position : center center;
51
    background-repeat:no-repeat;
52
}
53

    
54
.bouton-image
55
{
56
    background-color: transparent;
57
    border-color: transparent;
58
}
59

    
60
.monBouton:before
61
{
62
    background-image : url(../images/Button_Arrow_Small.png);
63
}
64

    
65
.monBouton:hover
66
{
67
    background-color: transparent;
68
    border-color: $cusBrown3;
69
}
70

    
71
.monBouton:focus
72
{
73
    background-color: transparent;
74
    border-color: $cusBrown3;
75
    outline: none !important;
76
    box-shadow: none !important;
77
}
78

    
79
.monBouton:active
80
{
81
    background-color: transparent !important;
82
    border-color: transparent !important;
83
    outline: none !important;
84
    box-shadow: none !important;
85
}
86

    
87
.content {
88
    position: relative;
89
}
90

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

    
109
.btn-circle.rounded-circle.btn-sm:active
110
{
111
    background-color: $cusBrown2;
112
    border-color: $cusBrown3;
113
    outline: none !important;
114
    box-shadow: none !important;
115
    color:$cusBlack;
116
}
117

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

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

    
168
@media only screen and (max-width: 540px)
169
{
170
    .head-title.text-center h1
171
    {
172
        font-size: 45pt;
173
    }
174

    
175
    .btn-circle.rounded-circle.btn-sm
176
    {
177
        width: 90px;
178
        height: 90px;
179
    }
180

    
181
    .btn-circle.rounded-circle.btn-dm
182
    {
183
        width: 130px;
184
        height: 130px;
185
    }
186

    
187
    .btn-circle.rounded-circle.btn-xl
188
    {
189
        width: 180px;
190
        height: 180px;
191
    }
192
}
(1-1/3)