Newer
Older
&--small {
max-width: $wrapper--small;
margin: 0 auto;
}
&--medium {
max-width: $wrapper--medium;
margin: 0 auto;
}
&--large {
max-width: $site-width;
margin: 0 auto;
}
&--main {
background-color: $color--white;
}
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
&--breakout {
position: relative;
right: 50%;
left: 50%;
width: 100vw;
margin-right: -50vw;
margin-left: -50vw;
}
&--blockquote {
padding: 1rem 0;
margin-top: 2rem;
margin-bottom: 2rem;
background: $color--light-grey;
@include media-query(tablet-portrait) {
padding: 4rem 0;
margin-top: 4rem;
margin-bottom: 4rem;
}
svg {
position: absolute;
display: none;
width: 110px;
height: 110px;
fill: $color--white;
@include media-query(tablet-portrait) {
display: block;
}
&:first-child {
top: 0;
left: 0;
transform: rotate(90deg);
}
&:last-child {
right: 0;
bottom: 0;
transform: rotate(-90deg);
}
}
}
&--dark-bg {
padding: 2rem 20px;
color: $color--white;
Chris Lawton
committed
background-color: $color--dark-grey;
@include media-query(tablet-portrait) {
padding: 4rem 20px;
}
}
&--streamfield {
margin-bottom: 2rem;
@include media-query(tablet-portrait) {