hugo-theme-fha/assets/css/theme.css

77 lines
1.5 KiB
CSS
Raw Normal View History

:root {
--c-divers: #7c2ef9;
--c-success: #03862b;
--c-danger: #d10015;
--c-caution: #ff8d01;
--c-warning: #ffea00;
--c-info: #246ede;
}
body {
font-family: sans-serif;
line-height: 1.5;
margin: 1rem;
}
.md-blockquote,
.md-alert {
margin-bottom: 1rem;
padding: 0 1rem;
border-radius: 5px;
2024-10-14 19:54:59 +00:00
border-left: 4px solid var(--bs-tertiary-color);
}
.md-blockquote>p:last-child,
.md-alert>p:last-child {
margin-bottom: 0;
}
.md-alert>p {
2024-10-14 19:54:59 +00:00
color: var(--bs-secondary-text-emphasis);
}
.md-alert-heading {
margin-bottom: 0.5rem;
display: flex;
align-items: center;
font-weight: 500;
font-size: 1rem;
}
.md-alert-note {
border-left: 4px solid var(--c-info);
color: var(--c-info);
}
.md-alert-nature,
.md-alert-camping,
.md-alert-tip {
border-left-color: var(--c-success);
color: var(--c-success);
}
.md-alert-important {
border-left-color: var(--c-danger);
color: var(--c-danger);
border-bottom: 1px solid var(--c-danger);
border-top: 1px solid var(--c-danger);
border-right: 1px solid var(--c-danger);
width : 90%;
padding-top: 0.2rem;
padding-bottom: 0.3rem;
}
.md-alert-money,
.md-alert-warning {
border-left-color: var(--c-warning);
color: var(--c-warning);
2024-10-14 19:54:59 +00:00
background-color: var(--bs-tertiary-color);
width : 90%;
padding-top: 0.2rem;
padding-bottom: 0.3rem;
}
.md-alert-caution {
border-left-color: var(--c-caution);
color: var(--c-caution);
}