Template:Mbox/styles.css: Difference between revisions
From Flexible Survival
Jump to navigationJump to search
Syntax McBucketface changed the content model of the page Template:Mbox/styles.css from "wikitext" to "Sanitized CSS": It's a CSS page |
m Protected "Template:Mbox/styles.css" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) |
(No difference)
| |
Latest revision as of 21:58, 22 May 2025
.mbox {
position: relative;
display: flex;
flex-direction: column;
margin-top: 0.4rem;
margin-bottom: 0.8rem;
background-color: var( --color-surface-2 );
border-radius: 16px;
color: var( --color-base--subtle );
font-size: 0.875rem;
}
.mbox.mbox-high {
background-color: var( --background-color-destructive );
}
.mbox.mbox-med {
background-color: var( --background-color-warning );
}
.mbox.mbox-low {
background-color: #405378;
}
.mbox-title {
display: flex;
align-items: center;
padding: 10px 15px;
font-weight: 500;
}
.mbox-icon img {
width: 14px;
height: auto;
margin-right: 10px;
opacity: 0.5;
}
.mbox-text {
position: absolute;
z-index: 10;
padding: 15px 20px;
width: calc(100% - 40px);
background-color: var( --color-surface-2 );
border-radius: 16px;
opacity: 0;
transition: opacity 0.2s ease, box-shadow 0.2s ease;
visibility: hidden;
}
.mbox:hover .mbox-text {
opacity: 1;
visibility: visible;
}
.mbox-high .mbox-text {
background-color: var( --background-color-destructive );
}
.mbox-med .mbox-text {
background-color: var( --background-color-warning );
}
.mbox-low .mbox-text {
background-color: #405378;
}
/* Dark mode */
html.skin-citizen-dark .mbox-icon img {
filter: invert( 1 );
}
/* Readability fixes */
html.skin-citizen-dark .mbox {
color: var( --color-base--emphasized );
}