Files
web/components/Current/Blocks/List/list.module.css
2024-02-12 13:20:45 +01:00

65 lines
1.0 KiB
CSS

.title {
font-family: Helvetica, Arial, sans-serif;
font-weight: 400;
line-height: normal;
margin-top: 2rem;
margin-bottom: 1rem;
text-decoration: none;
text-transform: none;
}
.ul {
margin-bottom: 15px;
}
.listItem {
margin-bottom: 8px;
padding-left: 1.3em;
}
.checkmark {
padding-left: 1.6em;
}
.checkmark::before, .disc::before {
position:relative;
top: 4px;
display: inline-block;
height: 0px;
width: 0px;
}
.checkmark::before {
content: url('/Static/img/bullet-list-tick-birch-v2.svg');
transform: scale(.9);
left: -1.2em;
}
.disc::before {
content: "•";
color: rgb(157, 160, 161);
font-size: 26px;
left: -0.7em;
}
.link {
border-bottom: 1px dotted #00838e;
color: #00838e;
text-decoration: none;
background-color: transparent;
}
.link:active, .link:hover {
text-decoration: underline;
outline: 0;
}
.link:hover {
border-bottom: none;
}
@media screen and (min-width: 950px) {
.title {
font-size: 1.375rem;
}
}