Files
lucent-laravel/front/sass/_typography.scss
T

44 lines
675 B
SCSS
Raw Normal View History

2024-08-14 22:04:34 +03:00
2024-08-15 18:52:53 +03:00
.content {
2024-08-14 22:04:34 +03:00
font-size: 16px;
line-height: 20px;
2024-08-18 17:23:18 +03:00
font-family: var(--main-font);
color: var(--text);
2024-08-14 22:04:34 +03:00
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;
2024-08-17 19:23:19 +03:00
2024-08-14 22:04:34 +03:00
}
2024-08-17 19:23:19 +03:00
.light-text{
color: var(--text-light);
}