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.
85 lines
1.2 KiB
85 lines
1.2 KiB
2 years ago
|
.privacy-policy {
|
||
|
background: $ui-base-color;
|
||
|
padding: 20px;
|
||
|
|
||
|
@media screen and (min-width: $no-gap-breakpoint) {
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
&__body {
|
||
|
margin-top: 20px;
|
||
|
color: $secondary-text-color;
|
||
|
font-size: 15px;
|
||
|
line-height: 22px;
|
||
|
|
||
|
h1,
|
||
|
p,
|
||
|
ul,
|
||
|
ol {
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
list-style: disc;
|
||
|
}
|
||
|
|
||
|
ol {
|
||
|
list-style: decimal;
|
||
|
}
|
||
|
|
||
|
ul,
|
||
|
ol {
|
||
|
padding-left: 1em;
|
||
|
}
|
||
|
|
||
|
li {
|
||
|
margin-bottom: 10px;
|
||
|
|
||
|
&::marker {
|
||
|
color: $darker-text-color;
|
||
|
}
|
||
|
|
||
|
&:last-child {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
color: $primary-text-color;
|
||
|
font-size: 19px;
|
||
|
line-height: 24px;
|
||
|
font-weight: 700;
|
||
|
margin-top: 30px;
|
||
|
|
||
|
&:first-child {
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
strong {
|
||
|
font-weight: 700;
|
||
|
color: $primary-text-color;
|
||
|
}
|
||
|
|
||
|
em {
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: $highlight-text-color;
|
||
|
text-decoration: underline;
|
||
|
|
||
|
&:focus,
|
||
|
&:hover,
|
||
|
&:active {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
hr {
|
||
|
border: 1px solid lighten($ui-base-color, 4%);
|
||
|
margin: 30px 0;
|
||
|
}
|
||
|
}
|
||
|
}
|