active_frontend 1.0.11 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/active_frontend/version.rb +1 -1
- data/vendor/assets/javascripts/affix.js +2 -2
- data/vendor/assets/javascripts/alert.js +1 -1
- data/vendor/assets/javascripts/button.js +1 -1
- data/vendor/assets/javascripts/carousel.js +1 -1
- data/vendor/assets/javascripts/collapse.js +2 -2
- data/vendor/assets/javascripts/dropdown.js +8 -4
- data/vendor/assets/javascripts/loader.js +361 -0
- data/vendor/assets/javascripts/map.js +8 -0
- data/vendor/assets/javascripts/popover.js +2 -2
- data/vendor/assets/javascripts/scrollspy.js +2 -2
- data/vendor/assets/javascripts/tab.js +1 -1
- data/vendor/assets/javascripts/tooltip.js +3 -3
- data/vendor/assets/stylesheets/affix.scss +4 -1
- data/vendor/assets/stylesheets/alert.scss +23 -8
- data/vendor/assets/stylesheets/animation.scss +185 -185
- data/vendor/assets/stylesheets/aside.scss +13 -13
- data/vendor/assets/stylesheets/breadcrumb.scss +2 -2
- data/vendor/assets/stylesheets/button.scss +102 -239
- data/vendor/assets/stylesheets/canvas.scss +77 -0
- data/vendor/assets/stylesheets/carousel.scss +3 -3
- data/vendor/assets/stylesheets/code.scss +48 -54
- data/vendor/assets/stylesheets/collapse.scss +2 -2
- data/vendor/assets/stylesheets/datepicker.scss +17 -17
- data/vendor/assets/stylesheets/dropdown.scss +11 -11
- data/vendor/assets/stylesheets/footer.scss +88 -20
- data/vendor/assets/stylesheets/form.scss +25 -59
- data/vendor/assets/stylesheets/grid.scss +137 -168
- data/vendor/assets/stylesheets/header.scss +61 -98
- data/vendor/assets/stylesheets/image.scss +24 -269
- data/vendor/assets/stylesheets/label_and_badge.scss +50 -49
- data/vendor/assets/stylesheets/link.scss +11 -7
- data/vendor/assets/stylesheets/loader.scss +56 -0
- data/vendor/assets/stylesheets/map.scss +1 -1
- data/vendor/assets/stylesheets/modal.scss +13 -13
- data/vendor/assets/stylesheets/nav_and_tab.scss +12 -12
- data/vendor/assets/stylesheets/pagination.scss +3 -3
- data/vendor/assets/stylesheets/panel.scss +2 -2
- data/vendor/assets/stylesheets/placeholder.scss +1 -1
- data/vendor/assets/stylesheets/popover.scss +12 -12
- data/vendor/assets/stylesheets/progress.scss +5 -5
- data/vendor/assets/stylesheets/reset.scss +10 -9
- data/vendor/assets/stylesheets/sidebar.scss +65 -0
- data/vendor/assets/stylesheets/spinner.scss +100 -112
- data/vendor/assets/stylesheets/swoggle.scss +29 -26
- data/vendor/assets/stylesheets/table.scss +7 -7
- data/vendor/assets/stylesheets/timepicker.scss +10 -10
- data/vendor/assets/stylesheets/tooltip.scss +9 -9
- data/vendor/assets/stylesheets/transition.scss +1 -1
- data/vendor/assets/stylesheets/trunk.scss +19 -24
- data/vendor/assets/stylesheets/typeahead.scss +1 -1
- data/vendor/assets/stylesheets/typography.scss +7 -7
- metadata +6 -2
@@ -2,118 +2,109 @@
|
|
2
2
|
==================================================
|
3
3
|
# Header
|
4
4
|
# Application
|
5
|
-
# Alternate
|
6
5
|
# Media Queries */
|
7
6
|
|
8
7
|
/* # Header
|
9
8
|
================================================== */
|
9
|
+
.header-fixed {
|
10
|
+
left: 0;
|
11
|
+
position: fixed;
|
12
|
+
right: 0;
|
13
|
+
top: 0;
|
14
|
+
z-index: 1030;
|
15
|
+
}
|
10
16
|
.header {
|
11
17
|
background: rgba(255,255,255,1);
|
12
18
|
border-bottom: 1px solid rgba(225,232,237,1);
|
13
|
-
box-sizing: border-box;
|
14
19
|
box-shadow: 0 1px 3px rgba(225,232,237,1);
|
15
|
-
|
16
|
-
|
20
|
+
box-sizing: border-box;
|
21
|
+
height: 80px;
|
22
|
+
padding: 0 10px;
|
17
23
|
width: 100%;
|
18
24
|
}
|
19
25
|
.header-brand > a {
|
20
|
-
color: rgba(
|
26
|
+
color: rgba(0,132,255,1);
|
21
27
|
float: left;
|
22
28
|
font-size: 44px;
|
23
|
-
|
29
|
+
line-height: 88px;
|
24
30
|
text-decoration: none;
|
25
31
|
}
|
26
32
|
.header-trunk {
|
27
33
|
float: left;
|
28
|
-
height: 85px;
|
29
34
|
list-style-type: none;
|
30
|
-
margin: 0 0 0
|
35
|
+
margin: 0 0 0 20px;
|
31
36
|
padding: 0;
|
32
37
|
}
|
33
|
-
.header-trunk > li {
|
34
|
-
|
35
|
-
border-right: 1px solid rgba(230,237,242,1);
|
36
|
-
color: rgba(102,117,127,1);
|
37
|
-
float: left;
|
38
|
-
font-weight: 500;
|
39
|
-
font-size: 13px;
|
40
|
-
height: 100%;
|
41
|
-
line-height: 85px;
|
42
|
-
margin: 0;
|
43
|
-
width: 220px;
|
44
|
-
text-align: center;
|
45
|
-
}
|
46
|
-
.header-trunk > li:first-child { border-left: 1px solid rgba(230,237,242,1); }
|
38
|
+
.header-trunk > li { float: left; }
|
39
|
+
.header-trunk > li.btn-group a { border-radius: 0; }
|
47
40
|
.header-trunk > li.btn-group + li.btn-group { margin: 0; }
|
48
41
|
.header-trunk > li > a {
|
49
42
|
background: rgba(255,255,255,1);
|
43
|
+
border-radius: 0;
|
44
|
+
border-right: 1px solid rgba(230,237,242,1);
|
45
|
+
box-sizing: border-box;
|
50
46
|
color: rgba(102,117,127,1);
|
51
47
|
display: block;
|
52
|
-
|
48
|
+
font-size: 13px;
|
49
|
+
font-weight: 500;
|
50
|
+
line-height: 13px;
|
53
51
|
letter-spacing: 1px;
|
54
52
|
overflow: hidden;
|
55
|
-
padding:
|
53
|
+
padding: 33px 15px 32px 15px;
|
54
|
+
text-align: center;
|
56
55
|
text-decoration: none;
|
57
|
-
|
58
|
-
|
56
|
+
text-transform: uppercase;
|
57
|
+
text-overflow: ellipsis;
|
58
|
+
vertical-align: middle;
|
59
59
|
white-space: nowrap;
|
60
|
-
width:
|
60
|
+
width: 220px;
|
61
61
|
}
|
62
|
-
.header-trunk > li > a:
|
63
|
-
.header-trunk > li > a.
|
64
|
-
.header-trunk > li > a
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
line-height:
|
69
|
-
width:
|
62
|
+
.header-trunk > li:first-child > a { border-left: 1px solid rgba(230,237,242,1); }
|
63
|
+
.header-trunk > li > a > .badge,
|
64
|
+
.header-trunk > li > a > .label {
|
65
|
+
display: inline-block;
|
66
|
+
font-size: 10px;
|
67
|
+
letter-spacing: 0;
|
68
|
+
line-height: 10px;
|
69
|
+
min-width: 10px;
|
70
|
+
padding: 4px;
|
71
|
+
text-transform: none;
|
72
|
+
vertical-align: middle;
|
70
73
|
}
|
71
74
|
.header-trunk > li.header-trunk-navicon a {
|
72
|
-
|
73
|
-
|
75
|
+
font-size: 32px;
|
76
|
+
line-height: 32px;
|
77
|
+
padding: 24px 10px 20px 10px;
|
78
|
+
width: 74px;
|
74
79
|
}
|
75
80
|
.header-trunk > li > ul.dropdown-menu {
|
76
|
-
background: rgba(56,67,81,1);
|
77
81
|
border-top-right-radius: 0;
|
78
|
-
|
79
|
-
border-color: rgba(26,37,51,1);
|
82
|
+
border-top-left-radius: 0;
|
80
83
|
box-shadow: 0 1px 2px rgba(56,67,81,0.75);
|
81
84
|
margin: 0 0 0 -1px;
|
82
85
|
padding: 10px 0;
|
83
86
|
width: calc(100% + 2px);
|
84
87
|
}
|
85
|
-
.header-trunk > li > ul.dropdown-menu > li.divider {
|
86
|
-
background: rgba(26,37,51,1);
|
87
|
-
margin: 14px 0 10px 0;
|
88
|
-
}
|
89
|
-
.header-trunk > li > ul.dropdown-menu > li > a { color: rgba(255,255,255,1); }
|
90
|
-
.header-trunk > li > ul.dropdown-menu > li > a:hover,
|
91
|
-
.header-trunk > li > ul.dropdown-menu > li > a:focus { color: rgba(15,135,226,1); }
|
92
|
-
.header-trunk > li > ul.dropdown-menu > li > a:active,
|
93
|
-
.header-trunk > li > ul.dropdown-menu > li > a.active { color: rgba(112,169,13,1); }
|
88
|
+
.header-trunk > li > ul.dropdown-menu > li.divider { margin: 14px 0 10px 0; }
|
94
89
|
.header-trunk > li .badge,
|
95
90
|
.header-trunk > li .label { margin: -8px 0 -6px 0; }
|
96
91
|
.header-search {
|
97
92
|
float: left;
|
98
|
-
margin:
|
93
|
+
margin: 19px 0 0 20px;
|
99
94
|
width: 280px;
|
100
95
|
}
|
101
|
-
.header-search > input {
|
102
|
-
background: transparent;
|
103
|
-
font-weight: 200;
|
104
|
-
margin: 0;
|
105
|
-
}
|
96
|
+
.header-search > input { margin: 0; }
|
106
97
|
.header-nav {
|
107
98
|
float: right;
|
108
99
|
list-style-type: none;
|
109
|
-
margin:
|
100
|
+
margin: 26px 0 10px 0;
|
110
101
|
padding: 0;
|
111
102
|
}
|
112
103
|
.header-nav > li {
|
113
|
-
color: rgba(
|
104
|
+
color: rgba(43,50,53,1);
|
114
105
|
display: inline-block;
|
106
|
+
font-size: 13px;
|
115
107
|
font-weight: 500;
|
116
|
-
font-size: 13px;
|
117
108
|
margin-left: 15px;
|
118
109
|
line-height: 13px;
|
119
110
|
}
|
@@ -125,25 +116,17 @@
|
|
125
116
|
letter-spacing: 1px;
|
126
117
|
padding: 14px 0 13px 0;
|
127
118
|
text-decoration: none;
|
128
|
-
|
119
|
+
text-transform: uppercase;
|
129
120
|
}
|
130
|
-
.header-nav > li > a:active,
|
131
|
-
.header-nav > li > a.active,
|
132
|
-
.header-nav > li > a:hover,
|
133
|
-
.header-nav > li > a:focus { color: rgba(15,135,226,1); }
|
134
121
|
.header-nav > li.bordered > a {
|
135
122
|
border-color: rgba(230,237,242,1);
|
136
123
|
padding-right: 20px;
|
137
|
-
|
124
|
+
padding-left: 20px;
|
138
125
|
}
|
139
|
-
.header-nav > li.bordered > a:active,
|
140
|
-
.header-nav > li.bordered > a.active,
|
141
|
-
.header-nav > li.bordered > a:hover,
|
142
|
-
.header-nav > li.bordered > a:focus { border-color: rgba(15,135,226,1); }
|
143
126
|
.header-user {
|
144
127
|
float: right;
|
145
128
|
font-size: 13px;
|
146
|
-
margin:
|
129
|
+
margin: 19px 0 0 15px;
|
147
130
|
}
|
148
131
|
.header-user > a {
|
149
132
|
color: rgba(102,117,127,1);
|
@@ -177,44 +160,24 @@
|
|
177
160
|
|
178
161
|
/* # Application
|
179
162
|
================================================== */
|
180
|
-
.header-app { height:
|
181
|
-
.header-app .header-brand > a {
|
182
|
-
.header-app .header-trunk {
|
183
|
-
|
184
|
-
|
185
|
-
}
|
186
|
-
.header-app .header-
|
187
|
-
.header-app .header-trunk > li.header-trunk-navicon { line-height: 70px; }
|
188
|
-
.header-app .header-search { margin-top: 11px; }
|
189
|
-
.header-app .header-nav { margin-top: 19px; }
|
190
|
-
.header-app .header-user { margin-top: 13px; }
|
191
|
-
|
192
|
-
/* # Alternate
|
193
|
-
================================================== */
|
194
|
-
.header-alt {
|
195
|
-
background: transparent;
|
196
|
-
border-color: transparent;
|
197
|
-
box-shadow: none;
|
198
|
-
}
|
199
|
-
.header-alt .header-brand > a { color: rgba(176,193,206,1); }
|
200
|
-
.header-alt .header-nav > li > a { color: rgba(176,193,206,1); }
|
201
|
-
.header-alt .header-nav > li.bordered > a:hover { border-color: rgba(230,237,242,1); }
|
163
|
+
.header-app { height: 60px; }
|
164
|
+
.header-app .header-brand > a { line-height: 67px; }
|
165
|
+
.header-app .header-trunk > li > a { padding: 23px 15px 22px 15px; }
|
166
|
+
.header-app .header-trunk > li.header-trunk-navicon a { padding: 13px 10px 11px 10px; }
|
167
|
+
.header-app .header-search { margin-top: 9px; }
|
168
|
+
.header-app .header-nav { margin-top: 17px; }
|
169
|
+
.header-app .header-user { margin-top: 10px; }
|
202
170
|
|
203
171
|
/* # Media Queries
|
204
172
|
================================================== */
|
205
|
-
@media only screen and (min-width: 960px) and (max-width: 1199px) {
|
206
|
-
.header-trunk > li { width: 200px; }
|
207
|
-
.header-trunk > li > a { width: 170px; }
|
208
|
-
}
|
209
173
|
@media only screen and (min-width: 768px) and (max-width: 959px) {
|
210
|
-
.header-trunk > li { width: 180px; }
|
211
|
-
.header-trunk > li > a { width: 150px; }
|
174
|
+
.header-trunk > li > a { width: 180px; }
|
212
175
|
}
|
213
176
|
@media only screen and (max-width: 767px) {
|
214
177
|
.header { height: 50px; }
|
215
178
|
.header-brand > a,
|
216
179
|
.header-app .header-brand > a {
|
217
180
|
font-size: 36px;
|
218
|
-
|
181
|
+
line-height: 57px;
|
219
182
|
}
|
220
183
|
}
|
@@ -24,7 +24,7 @@ img {
|
|
24
24
|
border-radius: 4px;
|
25
25
|
color: rgba(43,50,53,1);
|
26
26
|
display: block;
|
27
|
-
font-size:
|
27
|
+
font-size: 100px;
|
28
28
|
font-weight: bold;
|
29
29
|
height: 0;
|
30
30
|
line-height: 0;
|
@@ -36,82 +36,22 @@ img {
|
|
36
36
|
.img-placeholder > i {
|
37
37
|
color: rgba(43,50,53,1);
|
38
38
|
display: block;
|
39
|
-
font-size:
|
40
|
-
margin-top: -27%;
|
41
|
-
}
|
42
|
-
.one.column > .img-placeholder > i,
|
43
|
-
.one.columns > .img-placeholder > i {
|
44
|
-
font-size: 200%;
|
39
|
+
font-size: 205%;
|
45
40
|
margin-top: -25%;
|
46
41
|
}
|
47
|
-
.
|
48
|
-
|
49
|
-
|
50
|
-
}
|
51
|
-
.
|
52
|
-
|
53
|
-
|
54
|
-
}
|
55
|
-
.
|
56
|
-
|
57
|
-
|
58
|
-
}
|
59
|
-
.
|
60
|
-
font-size: 1500%;
|
61
|
-
margin-top: -28%;
|
62
|
-
}
|
63
|
-
.six.columns > .img-placeholder > i {
|
64
|
-
font-size: 1800%;
|
65
|
-
margin-top: -28%;
|
66
|
-
}
|
67
|
-
.seven.columns > .img-placeholder > i {
|
68
|
-
font-size: 2100%;
|
69
|
-
margin-top: -27%;
|
70
|
-
}
|
71
|
-
.eight.columns > .img-placeholder > i {
|
72
|
-
font-size: 2400%;
|
73
|
-
margin-top: -27%;
|
74
|
-
}
|
75
|
-
.nine.columns > .img-placeholder > i {
|
76
|
-
font-size: 2700%;
|
77
|
-
margin-top: -28%;
|
78
|
-
}
|
79
|
-
.ten.columns > .img-placeholder > i {
|
80
|
-
font-size: 3000%;
|
81
|
-
margin-top: -27%;
|
82
|
-
}
|
83
|
-
.eleven.columns > .img-placeholder > i {
|
84
|
-
font-size: 3300%;
|
85
|
-
margin-top: -27%;
|
86
|
-
}
|
87
|
-
.twelve.columns > .img-placeholder > i {
|
88
|
-
font-size: 3600%;
|
89
|
-
margin-top: -27%;
|
90
|
-
}
|
91
|
-
.thirteen.columns > .img-placeholder > i {
|
92
|
-
font-size: 3900%;
|
93
|
-
margin-top: -27%;
|
94
|
-
}
|
95
|
-
.fourteen.columns > .img-placeholder > i {
|
96
|
-
font-size: 4200%;
|
97
|
-
margin-top: -27%;
|
98
|
-
}
|
99
|
-
.fifteen.columns > .img-placeholder > i {
|
100
|
-
font-size: 4500%;
|
101
|
-
margin-top: -27%;
|
102
|
-
}
|
103
|
-
.sixteen.columns > .img-placeholder > i {
|
104
|
-
font-size: 4800%;
|
105
|
-
margin-top: -27%;
|
106
|
-
}
|
107
|
-
.one-third.column > .img-placeholder > i {
|
108
|
-
font-size: 1500%;
|
109
|
-
margin-top: -27%;
|
110
|
-
}
|
111
|
-
.two-thirds.column > .img-placeholder > i {
|
112
|
-
font-size: 3300%;
|
113
|
-
margin-top: -28%;
|
114
|
-
}
|
42
|
+
.one.column > .img-placeholder > i,
|
43
|
+
.one.columns > .img-placeholder > i { font-size: 35%; }
|
44
|
+
.two.columns > .img-placeholder > i { font-size: 75%; }
|
45
|
+
.three.columns > .img-placeholder > i { font-size: 125%; }
|
46
|
+
.four.columns > .img-placeholder > i { font-size: 165%; }
|
47
|
+
.five.columns > .img-placeholder > i { font-size: 205%; }
|
48
|
+
.six.columns > .img-placeholder > i { font-size: 245%; }
|
49
|
+
.seven.columns > .img-placeholder > i { font-size: 285%; }
|
50
|
+
.eight.columns > .img-placeholder > i { font-size: 325%; }
|
51
|
+
.nine.columns > .img-placeholder > i { font-size: 365%; }
|
52
|
+
.ten.columns > .img-placeholder > i { font-size: 405%; }
|
53
|
+
.one-third.column > .img-placeholder > i { font-size: 150%; }
|
54
|
+
.two-thirds.column > .img-placeholder > i { font-size: 300%; }
|
115
55
|
|
116
56
|
/* # Styles
|
117
57
|
================================================== */
|
@@ -120,164 +60,6 @@ img {
|
|
120
60
|
|
121
61
|
/* # Media Queries
|
122
62
|
================================================== */
|
123
|
-
@media only screen and (min-width: 960px) and (max-width: 1199px) {
|
124
|
-
.img-placeholder > i {
|
125
|
-
font-size: 4600%;
|
126
|
-
margin-top: -32%;
|
127
|
-
}
|
128
|
-
.one.column > .img-placeholder > i,
|
129
|
-
.one.columns > .img-placeholder > i {
|
130
|
-
font-size: 150%;
|
131
|
-
margin-top: -24%;
|
132
|
-
}
|
133
|
-
.two.columns > .img-placeholder > i {
|
134
|
-
font-size: 400%;
|
135
|
-
margin-top: -27%;
|
136
|
-
}
|
137
|
-
.three.columns > .img-placeholder > i {
|
138
|
-
font-size: 700%;
|
139
|
-
margin-top: -28%;
|
140
|
-
}
|
141
|
-
.four.columns > .img-placeholder > i {
|
142
|
-
font-size: 1000%;
|
143
|
-
margin-top: -29%;
|
144
|
-
}
|
145
|
-
.five.columns > .img-placeholder > i {
|
146
|
-
font-size: 1300%;
|
147
|
-
margin-top: -30%;
|
148
|
-
}
|
149
|
-
.six.columns > .img-placeholder > i {
|
150
|
-
font-size: 1600%;
|
151
|
-
margin-top: -30%;
|
152
|
-
}
|
153
|
-
.seven.columns > .img-placeholder > i {
|
154
|
-
font-size: 1900%;
|
155
|
-
margin-top: -31%;
|
156
|
-
}
|
157
|
-
.eight.columns > .img-placeholder > i {
|
158
|
-
font-size: 2200%;
|
159
|
-
margin-top: -31%;
|
160
|
-
}
|
161
|
-
.nine.columns > .img-placeholder > i {
|
162
|
-
font-size: 2500%;
|
163
|
-
margin-top: -31%;
|
164
|
-
}
|
165
|
-
.ten.columns > .img-placeholder > i {
|
166
|
-
font-size: 2800%;
|
167
|
-
margin-top: -31%;
|
168
|
-
}
|
169
|
-
.eleven.columns > .img-placeholder > i {
|
170
|
-
font-size: 3100%;
|
171
|
-
margin-top: -31%;
|
172
|
-
}
|
173
|
-
.twelve.columns > .img-placeholder > i {
|
174
|
-
font-size: 3400%;
|
175
|
-
margin-top: -31%;
|
176
|
-
}
|
177
|
-
.thirteen.columns > .img-placeholder > i {
|
178
|
-
font-size: 3700%;
|
179
|
-
margin-top: -31%;
|
180
|
-
}
|
181
|
-
.fourteen.columns > .img-placeholder > i {
|
182
|
-
font-size: 4000%;
|
183
|
-
margin-top: -31%;
|
184
|
-
}
|
185
|
-
.fifteen.columns > .img-placeholder > i {
|
186
|
-
font-size: 4300%;
|
187
|
-
margin-top: -32%;
|
188
|
-
}
|
189
|
-
.sixteen.columns > .img-placeholder > i {
|
190
|
-
font-size: 4600%;
|
191
|
-
margin-top: -32%;
|
192
|
-
}
|
193
|
-
.one-third.column > .img-placeholder > i {
|
194
|
-
font-size: 1300%;
|
195
|
-
margin-top: -29%;
|
196
|
-
}
|
197
|
-
.two-thirds.column > .img-placeholder > i {
|
198
|
-
font-size: 3100%;
|
199
|
-
margin-top: -32%;
|
200
|
-
}
|
201
|
-
}
|
202
|
-
@media only screen and (min-width: 768px) and (max-width: 959px) {
|
203
|
-
.img-placeholder > i {
|
204
|
-
font-size: 4500%;
|
205
|
-
margin-top: -39%;
|
206
|
-
}
|
207
|
-
.one.column > .img-placeholder > i,
|
208
|
-
.one.columns > .img-placeholder > i {
|
209
|
-
font-size: 100%;
|
210
|
-
margin-top: -24%;
|
211
|
-
}
|
212
|
-
.two.columns > .img-placeholder > i {
|
213
|
-
font-size: 300%;
|
214
|
-
margin-top: -26%;
|
215
|
-
}
|
216
|
-
.three.columns > .img-placeholder > i {
|
217
|
-
font-size: 600%;
|
218
|
-
margin-top: -32%;
|
219
|
-
}
|
220
|
-
.four.columns > .img-placeholder > i {
|
221
|
-
font-size: 900%;
|
222
|
-
margin-top: -34%;
|
223
|
-
}
|
224
|
-
.five.columns > .img-placeholder > i {
|
225
|
-
font-size: 1200%;
|
226
|
-
margin-top: -35%;
|
227
|
-
}
|
228
|
-
.six.columns > .img-placeholder > i {
|
229
|
-
font-size: 1500%;
|
230
|
-
margin-top: -37%;
|
231
|
-
}
|
232
|
-
.seven.columns > .img-placeholder > i {
|
233
|
-
font-size: 1800%;
|
234
|
-
margin-top: -38%;
|
235
|
-
}
|
236
|
-
.eight.columns > .img-placeholder > i {
|
237
|
-
font-size: 2100%;
|
238
|
-
margin-top: -38%;
|
239
|
-
}
|
240
|
-
.nine.columns > .img-placeholder > i {
|
241
|
-
font-size: 2400%;
|
242
|
-
margin-top: -38%;
|
243
|
-
}
|
244
|
-
.ten.columns > .img-placeholder > i {
|
245
|
-
font-size: 2700%;
|
246
|
-
margin-top: -38%;
|
247
|
-
}
|
248
|
-
.eleven.columns > .img-placeholder > i {
|
249
|
-
font-size: 3000%;
|
250
|
-
margin-top: -39%;
|
251
|
-
}
|
252
|
-
.twelve.columns > .img-placeholder > i {
|
253
|
-
font-size: 3300%;
|
254
|
-
margin-top: -39%;
|
255
|
-
}
|
256
|
-
.thirteen.columns > .img-placeholder > i {
|
257
|
-
font-size: 3600%;
|
258
|
-
margin-top: -39%;
|
259
|
-
}
|
260
|
-
.fourteen.columns > .img-placeholder > i {
|
261
|
-
font-size: 3900%;
|
262
|
-
margin-top: -39%;
|
263
|
-
}
|
264
|
-
.fifteen.columns > .img-placeholder > i {
|
265
|
-
font-size: 4200%;
|
266
|
-
margin-top: -39%;
|
267
|
-
}
|
268
|
-
.sixteen.columns > .img-placeholder > i {
|
269
|
-
font-size: 4500%;
|
270
|
-
margin-top: -39%;
|
271
|
-
}
|
272
|
-
.one-third.column > .img-placeholder > i {
|
273
|
-
font-size: 1100%;
|
274
|
-
margin-top: -32%;
|
275
|
-
}
|
276
|
-
.two-thirds.column > .img-placeholder > i {
|
277
|
-
font-size: 2900%;
|
278
|
-
margin-top: -39%;
|
279
|
-
}
|
280
|
-
}
|
281
63
|
@media only screen and (max-width: 767px) {
|
282
64
|
.img-placeholder > i,
|
283
65
|
.one.column > .img-placeholder > i,
|
@@ -291,41 +73,14 @@ img {
|
|
291
73
|
.eight.columns > .img-placeholder > i,
|
292
74
|
.nine.columns > .img-placeholder > i,
|
293
75
|
.ten.columns > .img-placeholder > i,
|
294
|
-
.eleven.columns > .img-placeholder > i,
|
295
|
-
.twelve.columns > .img-placeholder > i,
|
296
|
-
.thirteen.columns > .img-placeholder > i,
|
297
|
-
.fourteen.columns > .img-placeholder > i,
|
298
|
-
.fifteen.columns > .img-placeholder > i,
|
299
|
-
.sixteen.columns > .img-placeholder > i,
|
300
76
|
.one-third.column > .img-placeholder > i,
|
301
|
-
.two-thirds.column > .img-placeholder > i {
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
.
|
310
|
-
.one.columns > .img-placeholder > i,
|
311
|
-
.two.columns > .img-placeholder > i,
|
312
|
-
.three.columns > .img-placeholder > i,
|
313
|
-
.four.columns > .img-placeholder > i,
|
314
|
-
.five.columns > .img-placeholder > i,
|
315
|
-
.six.columns > .img-placeholder > i,
|
316
|
-
.seven.columns > .img-placeholder > i,
|
317
|
-
.eight.columns > .img-placeholder > i,
|
318
|
-
.nine.columns > .img-placeholder > i,
|
319
|
-
.ten.columns > .img-placeholder > i,
|
320
|
-
.eleven.columns > .img-placeholder > i,
|
321
|
-
.twelve.columns > .img-placeholder > i,
|
322
|
-
.thirteen.columns > .img-placeholder > i,
|
323
|
-
.fourteen.columns > .img-placeholder > i,
|
324
|
-
.fifteen.columns > .img-placeholder > i,
|
325
|
-
.sixteen.columns > .img-placeholder > i,
|
326
|
-
.one-third.column > .img-placeholder > i,
|
327
|
-
.two-thirds.column > .img-placeholder > i {
|
328
|
-
font-size: 2100%;
|
329
|
-
margin-top: -30%;
|
330
|
-
}
|
77
|
+
.two-thirds.column > .img-placeholder > i { font-size: 205%; }
|
78
|
+
.img-icon {
|
79
|
+
font-size: 260%;
|
80
|
+
height: 130px;
|
81
|
+
line-height: 300%;
|
82
|
+
padding: 0;
|
83
|
+
width: 130px;
|
84
|
+
}
|
85
|
+
.img-icon > i { margin: 0; }
|
331
86
|
}
|