41 lines
502 B
SCSS
41 lines
502 B
SCSS
@import 'variables';
|
|
|
|
dt {
|
|
font-weight: 600;
|
|
font-size: 18px;
|
|
color: $medium-blue;
|
|
}
|
|
|
|
dd {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.documentation {
|
|
width: 100%;
|
|
margin: $form-section-margin;
|
|
|
|
img {
|
|
width: 100%;
|
|
}
|
|
|
|
h3 {
|
|
font-weight: $semi-bold;
|
|
border-bottom: 2px solid $medium-blue;
|
|
|
|
span.optional {
|
|
color: $grey-text;
|
|
font-size: 12px;
|
|
padding-left: 10px;
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
|
|
p {
|
|
font-weight: 500;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
}
|