18 lines
321 B
SCSS
18 lines
321 B
SCSS
$default-space: 15px;
|
|
$new-p-margin-bottom: 3 * $default-space;
|
|
|
|
.accessibilite {
|
|
width: 1040px;
|
|
margin: 0 auto;
|
|
padding-top: $default-space * 2;
|
|
padding-bottom: $default-space * 2;
|
|
|
|
ul {
|
|
list-style-type: disc;
|
|
margin-top: -($default-space * 2);
|
|
}
|
|
}
|
|
|
|
.new-p {
|
|
margin-bottom: $new-p-margin-bottom;
|
|
}
|