You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
313 B
28 lines
313 B
9 years ago
|
.Box {
|
||
|
display: block;
|
||
|
max-width: 900px;
|
||
|
|
||
|
margin-top: dist(0);
|
||
|
padding: dist(-1);
|
||
|
|
||
|
@include media($phone) {
|
||
|
margin-top: dist(-1);
|
||
|
}
|
||
|
|
||
|
h1 + & {
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
|
||
|
border-radius: 3px;
|
||
|
background-color: rgba(white, .07);
|
||
|
|
||
|
&.wide {
|
||
|
width: initial;
|
||
|
max-width: initial;
|
||
|
}
|
||
|
}
|