74249687
Luigi Serra
Cross browser con...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
.container {
margin: 0 auto;
max-width: 1280px;
width: 90%;
}
@media #{$medium-and-up} {
.container {
width: 85%;
}
}
@media #{$large-and-up} {
.container {
width: 70%;
}
}
.container .row {
margin-left: (-1 * $gutter-width / 2);
margin-right: (-1 * $gutter-width / 2);
}
.section {
|
c5169e0e
Renato De Donato
a new hope
|
22
23
|
padding-top: 1rem;
padding-bottom: 1rem;
|
74249687
Luigi Serra
Cross browser con...
|
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
|
&.no-pad {
padding: 0;
}
&.no-pad-bot {
padding-bottom: 0;
}
&.no-pad-top {
padding-top: 0;
}
}
.row {
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
// Clear floating children
&:after {
content: "";
display: table;
clear: both;
}
.col {
float: left;
|
c5169e0e
Renato De Donato
a new hope
|
51
|
@include box-sizing(border-box);
|
74249687
Luigi Serra
Cross browser con...
|
52
53
|
padding: 0 $gutter-width / 2;
|
74249687
Luigi Serra
Cross browser con...
|
54
55
56
57
58
|
$i: 1;
@while $i <= $num-cols {
$perc: unquote((100 / ($num-cols / $i)) + "%");
&.s#{$i} {
width: $perc;
|
c5169e0e
Renato De Donato
a new hope
|
59
|
margin-left: 0;
|
74249687
Luigi Serra
Cross browser con...
|
60
61
62
|
}
$i: $i + 1;
}
|
74249687
Luigi Serra
Cross browser con...
|
63
64
65
66
67
68
|
$i: 1;
@while $i <= $num-cols {
$perc: unquote((100 / ($num-cols / $i)) + "%");
&.offset-s#{$i} {
margin-left: $perc;
}
|
74249687
Luigi Serra
Cross browser con...
|
69
70
71
72
73
74
75
76
77
78
|
$i: $i + 1;
}
@media #{$medium-and-up} {
$i: 1;
@while $i <= $num-cols {
$perc: unquote((100 / ($num-cols / $i)) + "%");
&.m#{$i} {
width: $perc;
|
c5169e0e
Renato De Donato
a new hope
|
79
|
margin-left: 0;
|
74249687
Luigi Serra
Cross browser con...
|
80
|
}
|
c5169e0e
Renato De Donato
a new hope
|
81
|
$i: $i + 1;
|
74249687
Luigi Serra
Cross browser con...
|
82
|
}
|
74249687
Luigi Serra
Cross browser con...
|
83
84
85
86
87
88
|
$i: 1;
@while $i <= $num-cols {
$perc: unquote((100 / ($num-cols / $i)) + "%");
&.offset-m#{$i} {
margin-left: $perc;
}
|
74249687
Luigi Serra
Cross browser con...
|
89
90
|
$i: $i + 1;
}
|
c5169e0e
Renato De Donato
a new hope
|
91
|
|
74249687
Luigi Serra
Cross browser con...
|
92
93
94
95
96
97
98
99
100
|
}
@media #{$large-and-up} {
$i: 1;
@while $i <= $num-cols {
$perc: unquote((100 / ($num-cols / $i)) + "%");
&.l#{$i} {
width: $perc;
|
c5169e0e
Renato De Donato
a new hope
|
101
|
margin-left: 0;
|
74249687
Luigi Serra
Cross browser con...
|
102
103
104
|
}
$i: $i + 1;
}
|
74249687
Luigi Serra
Cross browser con...
|
105
106
107
108
109
110
|
$i: 1;
@while $i <= $num-cols {
$perc: unquote((100 / ($num-cols / $i)) + "%");
&.offset-l#{$i} {
margin-left: $perc;
}
|
74249687
Luigi Serra
Cross browser con...
|
111
112
|
$i: $i + 1;
}
|
c5169e0e
Renato De Donato
a new hope
|
113
|
|
74249687
Luigi Serra
Cross browser con...
|
114
|
}
|
c5169e0e
Renato De Donato
a new hope
|
115
|
|
74249687
Luigi Serra
Cross browser con...
|
116
117
|
}
}
|