RMO-Front/src/pages/Holder.css

50 lines
775 B
CSS

.responsibility-overview {
list-style: none;
padding-left: 0;
margin: 15px 0 0;
}
.responsibility-overview li {
padding: 8px 0;
padding-left: 1.5em;
position: relative;
line-height: 1.6;
}
.responsibility-overview li::before {
content: "•";
position: absolute;
left: 0;
color: var(--primary-color);
}
.content-section {
margin: 20px 0;
}
.content-section h3 {
font-size: 22px;
margin: 30px 0 15px;
color: var(--primary-color);
}
.content-section p {
font-size: 16px;
line-height: 1.8;
color: var(--text-color);
margin-bottom: 20px;
}
.content-section ul {
list-style: none;
padding-left: 20px;
margin: 15px 0;
}
.content-section li {
padding: 10px 0;
font-size: 16px;
color: var(--text-color);
line-height: 1.6;
}