mirror of
https://github.com/goauthentik/authentik
synced 2026-04-26 01:25:02 +02:00
76 lines
1.6 KiB
CSS
76 lines
1.6 KiB
CSS
.lastUpdated {
|
|
font-size: smaller;
|
|
font-style: italic;
|
|
margin-top: 0.2rem;
|
|
align-self: end;
|
|
}
|
|
|
|
.divider {
|
|
margin-block: calc(var(--ifm-spacing-horizontal) * 1.5);
|
|
margin-inline: var(--ifm-spacing-vertical);
|
|
}
|
|
|
|
@media (min-width: 997px) {
|
|
.lastUpdated {
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
.headerContent {
|
|
text-transform: none;
|
|
}
|
|
|
|
.admonitionHeader {
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
html {
|
|
--edit-this-page-background: var(--ifm-color-secondary-lighter);
|
|
}
|
|
|
|
html[data-theme="dark"] {
|
|
--edit-this-page-background: var(--ifm-color-secondary-contrast-background);
|
|
}
|
|
|
|
.admonitionContrib {
|
|
--ifm-h5-font-size: 1rem;
|
|
--ifm-alert-background-color: var(--edit-this-page-background);
|
|
display: block;
|
|
border-left-style: none;
|
|
|
|
@media (min-width: 768px) {
|
|
--ifm-h5-font-size: 1.2rem;
|
|
--ifm-paragraph-margin-bottom: 0;
|
|
|
|
p:first-child {
|
|
margin-top: 0.75em;
|
|
}
|
|
|
|
ul {
|
|
--ifm-spacing-horizontal: 0.5rem;
|
|
|
|
display: flex;
|
|
gap: var(--ifm-spacing-horizontal);
|
|
justify-content: center;
|
|
margin: calc(var(--ifm-spacing-horizontal) * 2) 0
|
|
var(--ifm-spacing-horizontal);
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
vertical-align: middle;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
li:not(:first-child)::before {
|
|
display: inline-block;
|
|
content: "•";
|
|
list-style-type: "•";
|
|
font-size: 1em;
|
|
opacity: 0.75;
|
|
margin-inline-end: var(--ifm-spacing-horizontal);
|
|
}
|
|
}
|
|
}
|