picasso 0.5.2 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +5 -2
- data/docs/_picasso.html +762 -48
- data/docs/css/picasso-demos.css +762 -48
- data/docs/index.html +769 -51
- data/docs/picasso-_components.html +762 -48
- data/docs/picasso-_despegar.html +762 -48
- data/docs/picasso-_utils.html +762 -48
- data/docs/picasso-components-_accordions.html +762 -48
- data/docs/picasso-components-_arrows.html +762 -48
- data/docs/picasso-components-_bubbles.html +762 -48
- data/docs/picasso-components-_buttons.html +762 -48
- data/docs/picasso-components-_clusters.html +762 -48
- data/docs/picasso-components-_inputs.html +762 -48
- data/docs/picasso-components-_list-grids.html +762 -48
- data/docs/picasso-components-_navs.html +762 -48
- data/docs/picasso-components-_pagination.html +762 -48
- data/docs/picasso-components-_popups.html +762 -48
- data/docs/picasso-components-_tooltips.html +762 -48
- data/docs/picasso-components-buttons-_3d.html +762 -48
- data/docs/picasso-despegar-_mixins.html +762 -48
- data/docs/picasso-despegar-_variables.html +762 -48
- data/docs/picasso-utils-_clearfix.html +762 -48
- data/docs/picasso-utils-_grid.html +1101 -137
- data/docs/picasso-utils-_ie.html +762 -48
- data/docs/picasso-utils-_rem.html +762 -48
- data/docs/picasso-utils-_sprite.html +762 -48
- data/lib/picasso/version.rb +1 -1
- data/stylesheets/picasso/utils/_grid.scss +290 -59
- metadata +3 -3
data/README.md
CHANGED
@@ -21,10 +21,10 @@ En el `config.rb` agregar:
|
|
21
21
|
|
22
22
|
```ruby
|
23
23
|
require 'picasso'
|
24
|
-
gem 'picasso', '~> 0.
|
24
|
+
gem 'picasso', '~> 0.6.0'
|
25
25
|
```
|
26
26
|
|
27
|
-
Para versiones anteriores a 0.
|
27
|
+
Para versiones anteriores a 0.6.0, también se debe agregar como dependencia en el `config.rb`:
|
28
28
|
|
29
29
|
```ruby
|
30
30
|
require 'magick'
|
@@ -72,6 +72,9 @@ $ (sudo) apt-get install ruby-oily-png
|
|
72
72
|
|
73
73
|
# Changelog
|
74
74
|
|
75
|
+
## 0.6.0
|
76
|
+
* Mejoras en las grillas: Se agregan clases para el manejo de columnas antes diferentes resoluciones (`-small`, `-medium`, `-large`), posibilidad de posicionar columnas de manera relativa, centrado de columnas y ocultación.
|
77
|
+
|
75
78
|
## 0.5.2
|
76
79
|
* Refactor del componente `input()` utilizando un nuevo diseño.
|
77
80
|
|
data/docs/_picasso.html
CHANGED
@@ -1911,17 +1911,26 @@ body {
|
|
1911
1911
|
.row-col [class^="col"]:first-child {
|
1912
1912
|
margin-left: 0;
|
1913
1913
|
}
|
1914
|
+
.row-col [class*="pull"], .row-col [class*="push"] {
|
1915
|
+
position: relative;
|
1916
|
+
}
|
1914
1917
|
.row-col .col1 {
|
1915
1918
|
width: 6.34058%;
|
1916
1919
|
}
|
1917
1920
|
.ie7 .row-col .col1 {
|
1918
1921
|
width: 6.24858%;
|
1919
1922
|
}
|
1920
|
-
.row-col
|
1921
|
-
|
1923
|
+
.row-col .offset1,
|
1924
|
+
.row-col .offset1:first-child {
|
1925
|
+
margin-left: 6.34058%;
|
1926
|
+
}
|
1927
|
+
.row-col .push1,
|
1928
|
+
.row-col .push1:first-child {
|
1929
|
+
left: 8.51449%;
|
1922
1930
|
}
|
1923
|
-
.row-col
|
1924
|
-
|
1931
|
+
.row-col .pull1,
|
1932
|
+
.row-col .pull1:first-child {
|
1933
|
+
left: -8.51449%;
|
1925
1934
|
}
|
1926
1935
|
.row-col .col2 {
|
1927
1936
|
width: 14.85507%;
|
@@ -1929,11 +1938,17 @@ body {
|
|
1929
1938
|
.ie7 .row-col .col2 {
|
1930
1939
|
width: 14.76307%;
|
1931
1940
|
}
|
1932
|
-
.row-col
|
1933
|
-
|
1941
|
+
.row-col .offset2,
|
1942
|
+
.row-col .offset2:first-child {
|
1943
|
+
margin-left: 14.85507%;
|
1934
1944
|
}
|
1935
|
-
.row-col
|
1936
|
-
|
1945
|
+
.row-col .push2,
|
1946
|
+
.row-col .push2:first-child {
|
1947
|
+
left: 17.02899%;
|
1948
|
+
}
|
1949
|
+
.row-col .pull2,
|
1950
|
+
.row-col .pull2:first-child {
|
1951
|
+
left: -17.02899%;
|
1937
1952
|
}
|
1938
1953
|
.row-col .col3 {
|
1939
1954
|
width: 23.36957%;
|
@@ -1941,11 +1956,17 @@ body {
|
|
1941
1956
|
.ie7 .row-col .col3 {
|
1942
1957
|
width: 23.27757%;
|
1943
1958
|
}
|
1944
|
-
.row-col
|
1945
|
-
|
1959
|
+
.row-col .offset3,
|
1960
|
+
.row-col .offset3:first-child {
|
1961
|
+
margin-left: 23.36957%;
|
1962
|
+
}
|
1963
|
+
.row-col .push3,
|
1964
|
+
.row-col .push3:first-child {
|
1965
|
+
left: 25.54348%;
|
1946
1966
|
}
|
1947
|
-
.row-col
|
1948
|
-
|
1967
|
+
.row-col .pull3,
|
1968
|
+
.row-col .pull3:first-child {
|
1969
|
+
left: -25.54348%;
|
1949
1970
|
}
|
1950
1971
|
.row-col .col4 {
|
1951
1972
|
width: 31.88406%;
|
@@ -1953,11 +1974,17 @@ body {
|
|
1953
1974
|
.ie7 .row-col .col4 {
|
1954
1975
|
width: 31.79206%;
|
1955
1976
|
}
|
1956
|
-
.row-col
|
1957
|
-
|
1977
|
+
.row-col .offset4,
|
1978
|
+
.row-col .offset4:first-child {
|
1979
|
+
margin-left: 31.88406%;
|
1958
1980
|
}
|
1959
|
-
.row-col
|
1960
|
-
|
1981
|
+
.row-col .push4,
|
1982
|
+
.row-col .push4:first-child {
|
1983
|
+
left: 34.05797%;
|
1984
|
+
}
|
1985
|
+
.row-col .pull4,
|
1986
|
+
.row-col .pull4:first-child {
|
1987
|
+
left: -34.05797%;
|
1961
1988
|
}
|
1962
1989
|
.row-col .col5 {
|
1963
1990
|
width: 40.39855%;
|
@@ -1965,11 +1992,17 @@ body {
|
|
1965
1992
|
.ie7 .row-col .col5 {
|
1966
1993
|
width: 40.30655%;
|
1967
1994
|
}
|
1968
|
-
.row-col
|
1969
|
-
|
1995
|
+
.row-col .offset5,
|
1996
|
+
.row-col .offset5:first-child {
|
1997
|
+
margin-left: 40.39855%;
|
1998
|
+
}
|
1999
|
+
.row-col .push5,
|
2000
|
+
.row-col .push5:first-child {
|
2001
|
+
left: 42.57246%;
|
1970
2002
|
}
|
1971
|
-
.row-col
|
1972
|
-
|
2003
|
+
.row-col .pull5,
|
2004
|
+
.row-col .pull5:first-child {
|
2005
|
+
left: -42.57246%;
|
1973
2006
|
}
|
1974
2007
|
.row-col .col6 {
|
1975
2008
|
width: 48.91304%;
|
@@ -1977,11 +2010,17 @@ body {
|
|
1977
2010
|
.ie7 .row-col .col6 {
|
1978
2011
|
width: 48.82104%;
|
1979
2012
|
}
|
1980
|
-
.row-col
|
1981
|
-
|
2013
|
+
.row-col .offset6,
|
2014
|
+
.row-col .offset6:first-child {
|
2015
|
+
margin-left: 48.91304%;
|
1982
2016
|
}
|
1983
|
-
.row-col
|
1984
|
-
|
2017
|
+
.row-col .push6,
|
2018
|
+
.row-col .push6:first-child {
|
2019
|
+
left: 51.08696%;
|
2020
|
+
}
|
2021
|
+
.row-col .pull6,
|
2022
|
+
.row-col .pull6:first-child {
|
2023
|
+
left: -51.08696%;
|
1985
2024
|
}
|
1986
2025
|
.row-col .col7 {
|
1987
2026
|
width: 57.42754%;
|
@@ -1989,11 +2028,17 @@ body {
|
|
1989
2028
|
.ie7 .row-col .col7 {
|
1990
2029
|
width: 57.33554%;
|
1991
2030
|
}
|
1992
|
-
.row-col
|
1993
|
-
|
2031
|
+
.row-col .offset7,
|
2032
|
+
.row-col .offset7:first-child {
|
2033
|
+
margin-left: 57.42754%;
|
2034
|
+
}
|
2035
|
+
.row-col .push7,
|
2036
|
+
.row-col .push7:first-child {
|
2037
|
+
left: 59.60145%;
|
1994
2038
|
}
|
1995
|
-
.row-col
|
1996
|
-
|
2039
|
+
.row-col .pull7,
|
2040
|
+
.row-col .pull7:first-child {
|
2041
|
+
left: -59.60145%;
|
1997
2042
|
}
|
1998
2043
|
.row-col .col8 {
|
1999
2044
|
width: 65.94203%;
|
@@ -2001,11 +2046,17 @@ body {
|
|
2001
2046
|
.ie7 .row-col .col8 {
|
2002
2047
|
width: 65.85003%;
|
2003
2048
|
}
|
2004
|
-
.row-col
|
2005
|
-
|
2049
|
+
.row-col .offset8,
|
2050
|
+
.row-col .offset8:first-child {
|
2051
|
+
margin-left: 65.94203%;
|
2006
2052
|
}
|
2007
|
-
.row-col
|
2008
|
-
|
2053
|
+
.row-col .push8,
|
2054
|
+
.row-col .push8:first-child {
|
2055
|
+
left: 68.11594%;
|
2056
|
+
}
|
2057
|
+
.row-col .pull8,
|
2058
|
+
.row-col .pull8:first-child {
|
2059
|
+
left: -68.11594%;
|
2009
2060
|
}
|
2010
2061
|
.row-col .col9 {
|
2011
2062
|
width: 74.45652%;
|
@@ -2013,11 +2064,17 @@ body {
|
|
2013
2064
|
.ie7 .row-col .col9 {
|
2014
2065
|
width: 74.36452%;
|
2015
2066
|
}
|
2016
|
-
.row-col
|
2017
|
-
|
2067
|
+
.row-col .offset9,
|
2068
|
+
.row-col .offset9:first-child {
|
2069
|
+
margin-left: 74.45652%;
|
2070
|
+
}
|
2071
|
+
.row-col .push9,
|
2072
|
+
.row-col .push9:first-child {
|
2073
|
+
left: 76.63043%;
|
2018
2074
|
}
|
2019
|
-
.row-col
|
2020
|
-
|
2075
|
+
.row-col .pull9,
|
2076
|
+
.row-col .pull9:first-child {
|
2077
|
+
left: -76.63043%;
|
2021
2078
|
}
|
2022
2079
|
.row-col .col10 {
|
2023
2080
|
width: 82.97101%;
|
@@ -2025,11 +2082,17 @@ body {
|
|
2025
2082
|
.ie7 .row-col .col10 {
|
2026
2083
|
width: 82.87901%;
|
2027
2084
|
}
|
2028
|
-
.row-col
|
2029
|
-
|
2085
|
+
.row-col .offset10,
|
2086
|
+
.row-col .offset10:first-child {
|
2087
|
+
margin-left: 82.97101%;
|
2030
2088
|
}
|
2031
|
-
.row-col
|
2032
|
-
|
2089
|
+
.row-col .push10,
|
2090
|
+
.row-col .push10:first-child {
|
2091
|
+
left: 85.14493%;
|
2092
|
+
}
|
2093
|
+
.row-col .pull10,
|
2094
|
+
.row-col .pull10:first-child {
|
2095
|
+
left: -85.14493%;
|
2033
2096
|
}
|
2034
2097
|
.row-col .col11 {
|
2035
2098
|
width: 91.48551%;
|
@@ -2037,20 +2100,671 @@ body {
|
|
2037
2100
|
.ie7 .row-col .col11 {
|
2038
2101
|
width: 91.39351%;
|
2039
2102
|
}
|
2040
|
-
.row-col
|
2041
|
-
|
2103
|
+
.row-col .offset11,
|
2104
|
+
.row-col .offset11:first-child {
|
2105
|
+
margin-left: 91.48551%;
|
2106
|
+
}
|
2107
|
+
.row-col .push11,
|
2108
|
+
.row-col .push11:first-child {
|
2109
|
+
left: 93.65942%;
|
2042
2110
|
}
|
2043
|
-
.row-col
|
2044
|
-
|
2111
|
+
.row-col .pull11,
|
2112
|
+
.row-col .pull11:first-child {
|
2113
|
+
left: -93.65942%;
|
2045
2114
|
}
|
2046
2115
|
.row-col .col12 {
|
2047
2116
|
width: 100%;
|
2048
2117
|
}
|
2049
|
-
.row-col
|
2050
|
-
|
2118
|
+
.row-col .offset12,
|
2119
|
+
.row-col .offset12:first-child {
|
2120
|
+
margin-left: 100%;
|
2121
|
+
}
|
2122
|
+
.row-col .push12,
|
2123
|
+
.row-col .push12:first-child {
|
2124
|
+
left: 102.17391%;
|
2125
|
+
}
|
2126
|
+
.row-col .pull12,
|
2127
|
+
.row-col .pull12:first-child {
|
2128
|
+
left: -102.17391%;
|
2129
|
+
}
|
2130
|
+
.row-col .first {
|
2131
|
+
margin-left: 0;
|
2051
2132
|
}
|
2052
|
-
.row-col
|
2053
|
-
|
2133
|
+
.row-col .col0 {
|
2134
|
+
display: none;
|
2135
|
+
}
|
2136
|
+
.row-col .centered,
|
2137
|
+
.row-col .centered:first-child {
|
2138
|
+
margin-left: auto;
|
2139
|
+
margin-right: auto;
|
2140
|
+
float: none;
|
2141
|
+
}
|
2142
|
+
@media (max-width: 480px) {
|
2143
|
+
.row-col [class^="col-small"] {
|
2144
|
+
width: 100%;
|
2145
|
+
display: block;
|
2146
|
+
float: left;
|
2147
|
+
margin-left: 2.17391%;
|
2148
|
+
-webkit-box-sizing: border-box;
|
2149
|
+
-moz-box-sizing: border-box;
|
2150
|
+
box-sizing: border-box;
|
2151
|
+
}
|
2152
|
+
.row-col [class^="col-small"]:first-child {
|
2153
|
+
margin-left: 0;
|
2154
|
+
}
|
2155
|
+
.row-col [class*="pull"], .row-col [class*="push"] {
|
2156
|
+
position: relative;
|
2157
|
+
}
|
2158
|
+
.row-col .col1-small {
|
2159
|
+
width: 6.34058%;
|
2160
|
+
}
|
2161
|
+
.row-col .offset1-small,
|
2162
|
+
.row-col .offset1-small:first-child {
|
2163
|
+
margin-left: 6.34058%;
|
2164
|
+
}
|
2165
|
+
.row-col .push1-small,
|
2166
|
+
.row-col .push1-small:first-child {
|
2167
|
+
left: 8.51449%;
|
2168
|
+
}
|
2169
|
+
.row-col .pull1-small,
|
2170
|
+
.row-col .pull1-small:first-child {
|
2171
|
+
left: -8.51449%;
|
2172
|
+
}
|
2173
|
+
.row-col .col2-small {
|
2174
|
+
width: 14.85507%;
|
2175
|
+
}
|
2176
|
+
.row-col .offset2-small,
|
2177
|
+
.row-col .offset2-small:first-child {
|
2178
|
+
margin-left: 14.85507%;
|
2179
|
+
}
|
2180
|
+
.row-col .push2-small,
|
2181
|
+
.row-col .push2-small:first-child {
|
2182
|
+
left: 17.02899%;
|
2183
|
+
}
|
2184
|
+
.row-col .pull2-small,
|
2185
|
+
.row-col .pull2-small:first-child {
|
2186
|
+
left: -17.02899%;
|
2187
|
+
}
|
2188
|
+
.row-col .col3-small {
|
2189
|
+
width: 23.36957%;
|
2190
|
+
}
|
2191
|
+
.row-col .offset3-small,
|
2192
|
+
.row-col .offset3-small:first-child {
|
2193
|
+
margin-left: 23.36957%;
|
2194
|
+
}
|
2195
|
+
.row-col .push3-small,
|
2196
|
+
.row-col .push3-small:first-child {
|
2197
|
+
left: 25.54348%;
|
2198
|
+
}
|
2199
|
+
.row-col .pull3-small,
|
2200
|
+
.row-col .pull3-small:first-child {
|
2201
|
+
left: -25.54348%;
|
2202
|
+
}
|
2203
|
+
.row-col .col4-small {
|
2204
|
+
width: 31.88406%;
|
2205
|
+
}
|
2206
|
+
.row-col .offset4-small,
|
2207
|
+
.row-col .offset4-small:first-child {
|
2208
|
+
margin-left: 31.88406%;
|
2209
|
+
}
|
2210
|
+
.row-col .push4-small,
|
2211
|
+
.row-col .push4-small:first-child {
|
2212
|
+
left: 34.05797%;
|
2213
|
+
}
|
2214
|
+
.row-col .pull4-small,
|
2215
|
+
.row-col .pull4-small:first-child {
|
2216
|
+
left: -34.05797%;
|
2217
|
+
}
|
2218
|
+
.row-col .col5-small {
|
2219
|
+
width: 40.39855%;
|
2220
|
+
}
|
2221
|
+
.row-col .offset5-small,
|
2222
|
+
.row-col .offset5-small:first-child {
|
2223
|
+
margin-left: 40.39855%;
|
2224
|
+
}
|
2225
|
+
.row-col .push5-small,
|
2226
|
+
.row-col .push5-small:first-child {
|
2227
|
+
left: 42.57246%;
|
2228
|
+
}
|
2229
|
+
.row-col .pull5-small,
|
2230
|
+
.row-col .pull5-small:first-child {
|
2231
|
+
left: -42.57246%;
|
2232
|
+
}
|
2233
|
+
.row-col .col6-small {
|
2234
|
+
width: 48.91304%;
|
2235
|
+
}
|
2236
|
+
.row-col .offset6-small,
|
2237
|
+
.row-col .offset6-small:first-child {
|
2238
|
+
margin-left: 48.91304%;
|
2239
|
+
}
|
2240
|
+
.row-col .push6-small,
|
2241
|
+
.row-col .push6-small:first-child {
|
2242
|
+
left: 51.08696%;
|
2243
|
+
}
|
2244
|
+
.row-col .pull6-small,
|
2245
|
+
.row-col .pull6-small:first-child {
|
2246
|
+
left: -51.08696%;
|
2247
|
+
}
|
2248
|
+
.row-col .col7-small {
|
2249
|
+
width: 57.42754%;
|
2250
|
+
}
|
2251
|
+
.row-col .offset7-small,
|
2252
|
+
.row-col .offset7-small:first-child {
|
2253
|
+
margin-left: 57.42754%;
|
2254
|
+
}
|
2255
|
+
.row-col .push7-small,
|
2256
|
+
.row-col .push7-small:first-child {
|
2257
|
+
left: 59.60145%;
|
2258
|
+
}
|
2259
|
+
.row-col .pull7-small,
|
2260
|
+
.row-col .pull7-small:first-child {
|
2261
|
+
left: -59.60145%;
|
2262
|
+
}
|
2263
|
+
.row-col .col8-small {
|
2264
|
+
width: 65.94203%;
|
2265
|
+
}
|
2266
|
+
.row-col .offset8-small,
|
2267
|
+
.row-col .offset8-small:first-child {
|
2268
|
+
margin-left: 65.94203%;
|
2269
|
+
}
|
2270
|
+
.row-col .push8-small,
|
2271
|
+
.row-col .push8-small:first-child {
|
2272
|
+
left: 68.11594%;
|
2273
|
+
}
|
2274
|
+
.row-col .pull8-small,
|
2275
|
+
.row-col .pull8-small:first-child {
|
2276
|
+
left: -68.11594%;
|
2277
|
+
}
|
2278
|
+
.row-col .col9-small {
|
2279
|
+
width: 74.45652%;
|
2280
|
+
}
|
2281
|
+
.row-col .offset9-small,
|
2282
|
+
.row-col .offset9-small:first-child {
|
2283
|
+
margin-left: 74.45652%;
|
2284
|
+
}
|
2285
|
+
.row-col .push9-small,
|
2286
|
+
.row-col .push9-small:first-child {
|
2287
|
+
left: 76.63043%;
|
2288
|
+
}
|
2289
|
+
.row-col .pull9-small,
|
2290
|
+
.row-col .pull9-small:first-child {
|
2291
|
+
left: -76.63043%;
|
2292
|
+
}
|
2293
|
+
.row-col .col10-small {
|
2294
|
+
width: 82.97101%;
|
2295
|
+
}
|
2296
|
+
.row-col .offset10-small,
|
2297
|
+
.row-col .offset10-small:first-child {
|
2298
|
+
margin-left: 82.97101%;
|
2299
|
+
}
|
2300
|
+
.row-col .push10-small,
|
2301
|
+
.row-col .push10-small:first-child {
|
2302
|
+
left: 85.14493%;
|
2303
|
+
}
|
2304
|
+
.row-col .pull10-small,
|
2305
|
+
.row-col .pull10-small:first-child {
|
2306
|
+
left: -85.14493%;
|
2307
|
+
}
|
2308
|
+
.row-col .col11-small {
|
2309
|
+
width: 91.48551%;
|
2310
|
+
}
|
2311
|
+
.row-col .offset11-small,
|
2312
|
+
.row-col .offset11-small:first-child {
|
2313
|
+
margin-left: 91.48551%;
|
2314
|
+
}
|
2315
|
+
.row-col .push11-small,
|
2316
|
+
.row-col .push11-small:first-child {
|
2317
|
+
left: 93.65942%;
|
2318
|
+
}
|
2319
|
+
.row-col .pull11-small,
|
2320
|
+
.row-col .pull11-small:first-child {
|
2321
|
+
left: -93.65942%;
|
2322
|
+
}
|
2323
|
+
.row-col .col12-small {
|
2324
|
+
width: 100%;
|
2325
|
+
}
|
2326
|
+
.row-col .offset12-small,
|
2327
|
+
.row-col .offset12-small:first-child {
|
2328
|
+
margin-left: 100%;
|
2329
|
+
}
|
2330
|
+
.row-col .push12-small,
|
2331
|
+
.row-col .push12-small:first-child {
|
2332
|
+
left: 102.17391%;
|
2333
|
+
}
|
2334
|
+
.row-col .pull12-small,
|
2335
|
+
.row-col .pull12-small:first-child {
|
2336
|
+
left: -102.17391%;
|
2337
|
+
}
|
2338
|
+
.row-col .first-small {
|
2339
|
+
margin-left: 0;
|
2340
|
+
}
|
2341
|
+
.row-col .col0-small {
|
2342
|
+
display: none;
|
2343
|
+
}
|
2344
|
+
.row-col .centered-small,
|
2345
|
+
.row-col .centered-small:first-child {
|
2346
|
+
margin-left: auto;
|
2347
|
+
margin-right: auto;
|
2348
|
+
float: none;
|
2349
|
+
}
|
2350
|
+
}
|
2351
|
+
@media (min-width: 481px) and (max-width: 800px) {
|
2352
|
+
.row-col [class^="col-medium"] {
|
2353
|
+
width: 100%;
|
2354
|
+
display: block;
|
2355
|
+
float: left;
|
2356
|
+
margin-left: 2.17391%;
|
2357
|
+
-webkit-box-sizing: border-box;
|
2358
|
+
-moz-box-sizing: border-box;
|
2359
|
+
box-sizing: border-box;
|
2360
|
+
}
|
2361
|
+
.row-col [class^="col-medium"]:first-child {
|
2362
|
+
margin-left: 0;
|
2363
|
+
}
|
2364
|
+
.row-col [class*="pull"], .row-col [class*="push"] {
|
2365
|
+
position: relative;
|
2366
|
+
}
|
2367
|
+
.row-col .col1-medium {
|
2368
|
+
width: 6.34058%;
|
2369
|
+
}
|
2370
|
+
.row-col .offset1-medium,
|
2371
|
+
.row-col .offset1-medium:first-child {
|
2372
|
+
margin-left: 6.34058%;
|
2373
|
+
}
|
2374
|
+
.row-col .push1-medium,
|
2375
|
+
.row-col .push1-medium:first-child {
|
2376
|
+
left: 8.51449%;
|
2377
|
+
}
|
2378
|
+
.row-col .pull1-medium,
|
2379
|
+
.row-col .pull1-medium:first-child {
|
2380
|
+
left: -8.51449%;
|
2381
|
+
}
|
2382
|
+
.row-col .col2-medium {
|
2383
|
+
width: 14.85507%;
|
2384
|
+
}
|
2385
|
+
.row-col .offset2-medium,
|
2386
|
+
.row-col .offset2-medium:first-child {
|
2387
|
+
margin-left: 14.85507%;
|
2388
|
+
}
|
2389
|
+
.row-col .push2-medium,
|
2390
|
+
.row-col .push2-medium:first-child {
|
2391
|
+
left: 17.02899%;
|
2392
|
+
}
|
2393
|
+
.row-col .pull2-medium,
|
2394
|
+
.row-col .pull2-medium:first-child {
|
2395
|
+
left: -17.02899%;
|
2396
|
+
}
|
2397
|
+
.row-col .col3-medium {
|
2398
|
+
width: 23.36957%;
|
2399
|
+
}
|
2400
|
+
.row-col .offset3-medium,
|
2401
|
+
.row-col .offset3-medium:first-child {
|
2402
|
+
margin-left: 23.36957%;
|
2403
|
+
}
|
2404
|
+
.row-col .push3-medium,
|
2405
|
+
.row-col .push3-medium:first-child {
|
2406
|
+
left: 25.54348%;
|
2407
|
+
}
|
2408
|
+
.row-col .pull3-medium,
|
2409
|
+
.row-col .pull3-medium:first-child {
|
2410
|
+
left: -25.54348%;
|
2411
|
+
}
|
2412
|
+
.row-col .col4-medium {
|
2413
|
+
width: 31.88406%;
|
2414
|
+
}
|
2415
|
+
.row-col .offset4-medium,
|
2416
|
+
.row-col .offset4-medium:first-child {
|
2417
|
+
margin-left: 31.88406%;
|
2418
|
+
}
|
2419
|
+
.row-col .push4-medium,
|
2420
|
+
.row-col .push4-medium:first-child {
|
2421
|
+
left: 34.05797%;
|
2422
|
+
}
|
2423
|
+
.row-col .pull4-medium,
|
2424
|
+
.row-col .pull4-medium:first-child {
|
2425
|
+
left: -34.05797%;
|
2426
|
+
}
|
2427
|
+
.row-col .col5-medium {
|
2428
|
+
width: 40.39855%;
|
2429
|
+
}
|
2430
|
+
.row-col .offset5-medium,
|
2431
|
+
.row-col .offset5-medium:first-child {
|
2432
|
+
margin-left: 40.39855%;
|
2433
|
+
}
|
2434
|
+
.row-col .push5-medium,
|
2435
|
+
.row-col .push5-medium:first-child {
|
2436
|
+
left: 42.57246%;
|
2437
|
+
}
|
2438
|
+
.row-col .pull5-medium,
|
2439
|
+
.row-col .pull5-medium:first-child {
|
2440
|
+
left: -42.57246%;
|
2441
|
+
}
|
2442
|
+
.row-col .col6-medium {
|
2443
|
+
width: 48.91304%;
|
2444
|
+
}
|
2445
|
+
.row-col .offset6-medium,
|
2446
|
+
.row-col .offset6-medium:first-child {
|
2447
|
+
margin-left: 48.91304%;
|
2448
|
+
}
|
2449
|
+
.row-col .push6-medium,
|
2450
|
+
.row-col .push6-medium:first-child {
|
2451
|
+
left: 51.08696%;
|
2452
|
+
}
|
2453
|
+
.row-col .pull6-medium,
|
2454
|
+
.row-col .pull6-medium:first-child {
|
2455
|
+
left: -51.08696%;
|
2456
|
+
}
|
2457
|
+
.row-col .col7-medium {
|
2458
|
+
width: 57.42754%;
|
2459
|
+
}
|
2460
|
+
.row-col .offset7-medium,
|
2461
|
+
.row-col .offset7-medium:first-child {
|
2462
|
+
margin-left: 57.42754%;
|
2463
|
+
}
|
2464
|
+
.row-col .push7-medium,
|
2465
|
+
.row-col .push7-medium:first-child {
|
2466
|
+
left: 59.60145%;
|
2467
|
+
}
|
2468
|
+
.row-col .pull7-medium,
|
2469
|
+
.row-col .pull7-medium:first-child {
|
2470
|
+
left: -59.60145%;
|
2471
|
+
}
|
2472
|
+
.row-col .col8-medium {
|
2473
|
+
width: 65.94203%;
|
2474
|
+
}
|
2475
|
+
.row-col .offset8-medium,
|
2476
|
+
.row-col .offset8-medium:first-child {
|
2477
|
+
margin-left: 65.94203%;
|
2478
|
+
}
|
2479
|
+
.row-col .push8-medium,
|
2480
|
+
.row-col .push8-medium:first-child {
|
2481
|
+
left: 68.11594%;
|
2482
|
+
}
|
2483
|
+
.row-col .pull8-medium,
|
2484
|
+
.row-col .pull8-medium:first-child {
|
2485
|
+
left: -68.11594%;
|
2486
|
+
}
|
2487
|
+
.row-col .col9-medium {
|
2488
|
+
width: 74.45652%;
|
2489
|
+
}
|
2490
|
+
.row-col .offset9-medium,
|
2491
|
+
.row-col .offset9-medium:first-child {
|
2492
|
+
margin-left: 74.45652%;
|
2493
|
+
}
|
2494
|
+
.row-col .push9-medium,
|
2495
|
+
.row-col .push9-medium:first-child {
|
2496
|
+
left: 76.63043%;
|
2497
|
+
}
|
2498
|
+
.row-col .pull9-medium,
|
2499
|
+
.row-col .pull9-medium:first-child {
|
2500
|
+
left: -76.63043%;
|
2501
|
+
}
|
2502
|
+
.row-col .col10-medium {
|
2503
|
+
width: 82.97101%;
|
2504
|
+
}
|
2505
|
+
.row-col .offset10-medium,
|
2506
|
+
.row-col .offset10-medium:first-child {
|
2507
|
+
margin-left: 82.97101%;
|
2508
|
+
}
|
2509
|
+
.row-col .push10-medium,
|
2510
|
+
.row-col .push10-medium:first-child {
|
2511
|
+
left: 85.14493%;
|
2512
|
+
}
|
2513
|
+
.row-col .pull10-medium,
|
2514
|
+
.row-col .pull10-medium:first-child {
|
2515
|
+
left: -85.14493%;
|
2516
|
+
}
|
2517
|
+
.row-col .col11-medium {
|
2518
|
+
width: 91.48551%;
|
2519
|
+
}
|
2520
|
+
.row-col .offset11-medium,
|
2521
|
+
.row-col .offset11-medium:first-child {
|
2522
|
+
margin-left: 91.48551%;
|
2523
|
+
}
|
2524
|
+
.row-col .push11-medium,
|
2525
|
+
.row-col .push11-medium:first-child {
|
2526
|
+
left: 93.65942%;
|
2527
|
+
}
|
2528
|
+
.row-col .pull11-medium,
|
2529
|
+
.row-col .pull11-medium:first-child {
|
2530
|
+
left: -93.65942%;
|
2531
|
+
}
|
2532
|
+
.row-col .col12-medium {
|
2533
|
+
width: 100%;
|
2534
|
+
}
|
2535
|
+
.row-col .offset12-medium,
|
2536
|
+
.row-col .offset12-medium:first-child {
|
2537
|
+
margin-left: 100%;
|
2538
|
+
}
|
2539
|
+
.row-col .push12-medium,
|
2540
|
+
.row-col .push12-medium:first-child {
|
2541
|
+
left: 102.17391%;
|
2542
|
+
}
|
2543
|
+
.row-col .pull12-medium,
|
2544
|
+
.row-col .pull12-medium:first-child {
|
2545
|
+
left: -102.17391%;
|
2546
|
+
}
|
2547
|
+
.row-col .first-medium {
|
2548
|
+
margin-left: 0;
|
2549
|
+
}
|
2550
|
+
.row-col .col0-medium {
|
2551
|
+
display: none;
|
2552
|
+
}
|
2553
|
+
.row-col .centered-medium,
|
2554
|
+
.row-col .centered-medium:first-child {
|
2555
|
+
margin-left: auto;
|
2556
|
+
margin-right: auto;
|
2557
|
+
float: none;
|
2558
|
+
}
|
2559
|
+
}
|
2560
|
+
@media (min-width: 801px) and (max-width: 1024px) {
|
2561
|
+
.row-col [class^="col-large"] {
|
2562
|
+
width: 100%;
|
2563
|
+
display: block;
|
2564
|
+
float: left;
|
2565
|
+
margin-left: 2.17391%;
|
2566
|
+
-webkit-box-sizing: border-box;
|
2567
|
+
-moz-box-sizing: border-box;
|
2568
|
+
box-sizing: border-box;
|
2569
|
+
}
|
2570
|
+
.row-col [class^="col-large"]:first-child {
|
2571
|
+
margin-left: 0;
|
2572
|
+
}
|
2573
|
+
.row-col [class*="pull"], .row-col [class*="push"] {
|
2574
|
+
position: relative;
|
2575
|
+
}
|
2576
|
+
.row-col .col1-large {
|
2577
|
+
width: 6.34058%;
|
2578
|
+
}
|
2579
|
+
.row-col .offset1-large,
|
2580
|
+
.row-col .offset1-large:first-child {
|
2581
|
+
margin-left: 6.34058%;
|
2582
|
+
}
|
2583
|
+
.row-col .push1-large,
|
2584
|
+
.row-col .push1-large:first-child {
|
2585
|
+
left: 8.51449%;
|
2586
|
+
}
|
2587
|
+
.row-col .pull1-large,
|
2588
|
+
.row-col .pull1-large:first-child {
|
2589
|
+
left: -8.51449%;
|
2590
|
+
}
|
2591
|
+
.row-col .col2-large {
|
2592
|
+
width: 14.85507%;
|
2593
|
+
}
|
2594
|
+
.row-col .offset2-large,
|
2595
|
+
.row-col .offset2-large:first-child {
|
2596
|
+
margin-left: 14.85507%;
|
2597
|
+
}
|
2598
|
+
.row-col .push2-large,
|
2599
|
+
.row-col .push2-large:first-child {
|
2600
|
+
left: 17.02899%;
|
2601
|
+
}
|
2602
|
+
.row-col .pull2-large,
|
2603
|
+
.row-col .pull2-large:first-child {
|
2604
|
+
left: -17.02899%;
|
2605
|
+
}
|
2606
|
+
.row-col .col3-large {
|
2607
|
+
width: 23.36957%;
|
2608
|
+
}
|
2609
|
+
.row-col .offset3-large,
|
2610
|
+
.row-col .offset3-large:first-child {
|
2611
|
+
margin-left: 23.36957%;
|
2612
|
+
}
|
2613
|
+
.row-col .push3-large,
|
2614
|
+
.row-col .push3-large:first-child {
|
2615
|
+
left: 25.54348%;
|
2616
|
+
}
|
2617
|
+
.row-col .pull3-large,
|
2618
|
+
.row-col .pull3-large:first-child {
|
2619
|
+
left: -25.54348%;
|
2620
|
+
}
|
2621
|
+
.row-col .col4-large {
|
2622
|
+
width: 31.88406%;
|
2623
|
+
}
|
2624
|
+
.row-col .offset4-large,
|
2625
|
+
.row-col .offset4-large:first-child {
|
2626
|
+
margin-left: 31.88406%;
|
2627
|
+
}
|
2628
|
+
.row-col .push4-large,
|
2629
|
+
.row-col .push4-large:first-child {
|
2630
|
+
left: 34.05797%;
|
2631
|
+
}
|
2632
|
+
.row-col .pull4-large,
|
2633
|
+
.row-col .pull4-large:first-child {
|
2634
|
+
left: -34.05797%;
|
2635
|
+
}
|
2636
|
+
.row-col .col5-large {
|
2637
|
+
width: 40.39855%;
|
2638
|
+
}
|
2639
|
+
.row-col .offset5-large,
|
2640
|
+
.row-col .offset5-large:first-child {
|
2641
|
+
margin-left: 40.39855%;
|
2642
|
+
}
|
2643
|
+
.row-col .push5-large,
|
2644
|
+
.row-col .push5-large:first-child {
|
2645
|
+
left: 42.57246%;
|
2646
|
+
}
|
2647
|
+
.row-col .pull5-large,
|
2648
|
+
.row-col .pull5-large:first-child {
|
2649
|
+
left: -42.57246%;
|
2650
|
+
}
|
2651
|
+
.row-col .col6-large {
|
2652
|
+
width: 48.91304%;
|
2653
|
+
}
|
2654
|
+
.row-col .offset6-large,
|
2655
|
+
.row-col .offset6-large:first-child {
|
2656
|
+
margin-left: 48.91304%;
|
2657
|
+
}
|
2658
|
+
.row-col .push6-large,
|
2659
|
+
.row-col .push6-large:first-child {
|
2660
|
+
left: 51.08696%;
|
2661
|
+
}
|
2662
|
+
.row-col .pull6-large,
|
2663
|
+
.row-col .pull6-large:first-child {
|
2664
|
+
left: -51.08696%;
|
2665
|
+
}
|
2666
|
+
.row-col .col7-large {
|
2667
|
+
width: 57.42754%;
|
2668
|
+
}
|
2669
|
+
.row-col .offset7-large,
|
2670
|
+
.row-col .offset7-large:first-child {
|
2671
|
+
margin-left: 57.42754%;
|
2672
|
+
}
|
2673
|
+
.row-col .push7-large,
|
2674
|
+
.row-col .push7-large:first-child {
|
2675
|
+
left: 59.60145%;
|
2676
|
+
}
|
2677
|
+
.row-col .pull7-large,
|
2678
|
+
.row-col .pull7-large:first-child {
|
2679
|
+
left: -59.60145%;
|
2680
|
+
}
|
2681
|
+
.row-col .col8-large {
|
2682
|
+
width: 65.94203%;
|
2683
|
+
}
|
2684
|
+
.row-col .offset8-large,
|
2685
|
+
.row-col .offset8-large:first-child {
|
2686
|
+
margin-left: 65.94203%;
|
2687
|
+
}
|
2688
|
+
.row-col .push8-large,
|
2689
|
+
.row-col .push8-large:first-child {
|
2690
|
+
left: 68.11594%;
|
2691
|
+
}
|
2692
|
+
.row-col .pull8-large,
|
2693
|
+
.row-col .pull8-large:first-child {
|
2694
|
+
left: -68.11594%;
|
2695
|
+
}
|
2696
|
+
.row-col .col9-large {
|
2697
|
+
width: 74.45652%;
|
2698
|
+
}
|
2699
|
+
.row-col .offset9-large,
|
2700
|
+
.row-col .offset9-large:first-child {
|
2701
|
+
margin-left: 74.45652%;
|
2702
|
+
}
|
2703
|
+
.row-col .push9-large,
|
2704
|
+
.row-col .push9-large:first-child {
|
2705
|
+
left: 76.63043%;
|
2706
|
+
}
|
2707
|
+
.row-col .pull9-large,
|
2708
|
+
.row-col .pull9-large:first-child {
|
2709
|
+
left: -76.63043%;
|
2710
|
+
}
|
2711
|
+
.row-col .col10-large {
|
2712
|
+
width: 82.97101%;
|
2713
|
+
}
|
2714
|
+
.row-col .offset10-large,
|
2715
|
+
.row-col .offset10-large:first-child {
|
2716
|
+
margin-left: 82.97101%;
|
2717
|
+
}
|
2718
|
+
.row-col .push10-large,
|
2719
|
+
.row-col .push10-large:first-child {
|
2720
|
+
left: 85.14493%;
|
2721
|
+
}
|
2722
|
+
.row-col .pull10-large,
|
2723
|
+
.row-col .pull10-large:first-child {
|
2724
|
+
left: -85.14493%;
|
2725
|
+
}
|
2726
|
+
.row-col .col11-large {
|
2727
|
+
width: 91.48551%;
|
2728
|
+
}
|
2729
|
+
.row-col .offset11-large,
|
2730
|
+
.row-col .offset11-large:first-child {
|
2731
|
+
margin-left: 91.48551%;
|
2732
|
+
}
|
2733
|
+
.row-col .push11-large,
|
2734
|
+
.row-col .push11-large:first-child {
|
2735
|
+
left: 93.65942%;
|
2736
|
+
}
|
2737
|
+
.row-col .pull11-large,
|
2738
|
+
.row-col .pull11-large:first-child {
|
2739
|
+
left: -93.65942%;
|
2740
|
+
}
|
2741
|
+
.row-col .col12-large {
|
2742
|
+
width: 100%;
|
2743
|
+
}
|
2744
|
+
.row-col .offset12-large,
|
2745
|
+
.row-col .offset12-large:first-child {
|
2746
|
+
margin-left: 100%;
|
2747
|
+
}
|
2748
|
+
.row-col .push12-large,
|
2749
|
+
.row-col .push12-large:first-child {
|
2750
|
+
left: 102.17391%;
|
2751
|
+
}
|
2752
|
+
.row-col .pull12-large,
|
2753
|
+
.row-col .pull12-large:first-child {
|
2754
|
+
left: -102.17391%;
|
2755
|
+
}
|
2756
|
+
.row-col .first-large {
|
2757
|
+
margin-left: 0;
|
2758
|
+
}
|
2759
|
+
.row-col .col0-large {
|
2760
|
+
display: none;
|
2761
|
+
}
|
2762
|
+
.row-col .centered-large,
|
2763
|
+
.row-col .centered-large:first-child {
|
2764
|
+
margin-left: auto;
|
2765
|
+
margin-right: auto;
|
2766
|
+
float: none;
|
2767
|
+
}
|
2054
2768
|
}
|
2055
2769
|
|
2056
2770
|
.row-col {
|