50 lines
654 B
SCSS
50 lines
654 B
SCSS
.text-page {
|
|
p,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
ul {
|
|
margin: 0;
|
|
@include textbox;
|
|
|
|
&:last-of-type:not(ul) {
|
|
margin-bottom: $size-32;
|
|
}
|
|
|
|
@include touch {
|
|
padding: $size-16;
|
|
}
|
|
}
|
|
|
|
h2,
|
|
h3 {
|
|
display: inline-block;
|
|
margin-top: $size-64;
|
|
margin-bottom: $size-32;
|
|
}
|
|
|
|
ul {
|
|
font-size: $size-14;
|
|
padding-top: 0;
|
|
|
|
li {
|
|
list-style: inside;
|
|
@include padding-horizontal($size-12);
|
|
line-height: $size-24;
|
|
|
|
&:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
sup a {
|
|
text-decoration: none;
|
|
// color: $turquoise;
|
|
}
|
|
|
|
.link-to-submit {
|
|
text-align: center;
|
|
}
|
|
}
|