f5002842
Eugeny Galkovskiy
first commit
|
1
2
|
/* your styles go here */
/* CSS used here will be applied after bootstrap.css */
|
37c832ae
Eugeny Galkovskiy
css edits
|
3
|
html,body{padding:0!important;margin:0!important;}
|
f5002842
Eugeny Galkovskiy
first commit
|
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
.modal-header-success {
color: #fff;
padding: 9px 15px;
border-bottom: 1px solid #eee;
background-color: #5cb85c;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.modal-header-warning {
color: #fff;
padding: 9px 15px;
border-bottom: 1px solid #eee;
background-color: #f0ad4e;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.modal-header-danger {
color: #fff;
padding: 9px 15px;
border-bottom: 1px solid #eee;
background-color: #d9534f;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.modal-header-info {
color: #fff;
padding: 9px 15px;
border-bottom: 1px solid #eee;
background-color: #5bc0de;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.modal-header-primary {
color: #fff;
padding: 9px 15px;
border-bottom: 1px solid #eee;
background-color: #428bca;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.modal-header-theme {
color: #fff;
padding: 9px 15px;
border-bottom: 1px solid #eee;
background-color: #38a7bb;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.has-success .form-control {
border-color: #d6e9c6;
}
.has-error .form-control {
border-color: #ebccd1;
}
#back-to-top {
position: fixed;
top: 100px;
left: 0;
z-index: 9999;
width: 40px;
height: 40px;
text-align: center;
line-height: 30px;
background: #38a7bb;
color: #fff;
cursor: pointer;
text-decoration: none;
transition: opacity 0.2s ease-out;
opacity: 0;
padding: 4px 1px 4px 0;
}
#back-to-top:hover {
background: #20616d;
color: #fff;
}
#back-to-top.show {
opacity: 1;
}
#top .social a:hover.vk {
background: #507299;
}
#top .social a:hover.odnoklassniki {
background: #ee8208;
}
#navigation .navbar-nav ul.dropdown-menu li.active a {
background: none;
color: white;
}
#navigation .navbar-nav ul.dropdown-menu li.active {
background: #38a7bb;
|
6daf3e16
Eugeny Galkovskiy
h1-h6 to span
|
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
}
span.panel-title{
display: inline-block;
border-bottom: solid 5px #986dbd;
line-height: 1.1;
margin-bottom: 0;
padding-bottom: 10px;
}
#footer span.title{
font-size: 14px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #eeeeee;
margin-top: 10px;
margin-bottom: 10px;
display: inline-block;
}
#heading-breadcrumbs span.main {
color: #333333;
text-transform: uppercase;
font-size: 30px;
font-weight: 700;
letter-spacing: 0.08em;
margin-top: 20px;
margin-bottom: 20px;
display:inline-block;
line-height: 1.1;
|
115d17c0
Eugeny Galkovskiy
h1-h6 to span
|
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
}
.heading span.main{
display: inline-block;
border-bottom: solid 5px #986dbd;
line-height: 1.1;
margin-bottom: 0;
padding-bottom: 10px;
vertical-align: middle;
text-transform: uppercase;
letter-spacing: 0.06em;
font-size: 30px;
font-weight: bold;
color: #333333;
margin-top: 20px;
|
0494569b
Eugeny Galkovskiy
button get it
|
176
177
178
|
}
.pages#get-it {
padding: 20px 0 20px;
|
31f9e6ed
Eugeny Galkovskiy
error-page1
|
179
180
181
182
183
184
185
186
187
188
189
|
}
#error-page .title{
font-size: 28px;
font-weight: bold;
line-height: 36px;
color: #333333;
}
#error-page .subtitle{
color: #333333;
font-size: 24px;
margin-top: 3px;
|
3359e826
Eugeny Galkovskiy
error-page2
|
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
|
}
#error-page .error-logo div{
display: block;
margin: 0 auto;
width: 100%;
max-width: 430px;
padding-top: 50%;
max-height: 191px;
box-sizing: border-box;
background: url(/img/404.png);
background-position: top center;
background-repeat: no-repeat;
background-size: contain;
}
@media(max-width:1199px){
#error-page br{display:none;}
|
37c832ae
Eugeny Galkovskiy
css edits
|
206
|
}
|
f4d53892
Eugeny Galkovskiy
css edits
|
207
|
.navbar-affixed-top.affix{z-index:10000;}
|
37c832ae
Eugeny Galkovskiy
css edits
|
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
|
#heading-breadcrumbs{background: #986dbd;color:#fff;}
#heading-breadcrumbs h1{color:#fff;}
#heading-breadcrumbs ul li a span{color: #c1a7d7;}
#heading-breadcrumbs .breadcrumb>.active{color: #d6c5e5;}
#heading-breadcrumbs .breadcrumb>li+li:before{color: #d6c5e5;}
#back-to-top {background: #8f67b1;}
#back-to-top:hover {background: #653d87;}
.owl-carousel .owl-wrapper-outer{background-color: #e8e7e9;}
.owl-item .item {
position: relative;
height: 0;
padding-bottom: 59%;
max-height: 500px;
overflow: hidden;
}
.owl-item .item .itemimage {
position: absolute;
width: 100%;
height: 100%;
background-position: center center;
background-size: cover;
|
63c0fc1c
Eugeny Galkovskiy
css edits
|
229
|
}
|
3ce7b9c2
Eugeny Galkovskiy
css edits
|
230
231
232
233
234
235
|
@media(max-width:767px){
.dropdown-menu li a{
max-width: 100%;
display: block;
white-space: normal;
}
|
f4d53892
Eugeny Galkovskiy
css edits
|
236
237
238
|
.btn-template-transparent-primary{
margin: 10px 0px;
}
|
f5002842
Eugeny Galkovskiy
first commit
|
239
|
}
|