44 lines
675 B
SCSS
44 lines
675 B
SCSS
|
|
|
|
.content {
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
font-family: var(--main-font);
|
|
color: var(--text);
|
|
p{
|
|
|
|
margin-bottom: 14px;
|
|
&:last-child{
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
padding: 0 0 0 16px;
|
|
list-style: none outside none;
|
|
|
|
li::before {
|
|
content: "—";
|
|
opacity: .5;
|
|
font-size: 12px;
|
|
padding-right: 6px;
|
|
vertical-align: 10%;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
.lx-small-text {
|
|
font-size: 12px;
|
|
line-height: 15px;
|
|
|
|
}
|
|
|
|
.light-text{
|
|
color: var(--text-light);
|
|
} |