Want to contribute? Join the Discord and ask for the editor role.
Template:Mbox/styles.css: Difference between revisions
Template page
No edit summary |
No edit summary |
||
Line 23: | Line 23: | ||
align-items: center; | align-items: center; | ||
font-weight: bold; | font-weight: bold; | ||
} | |||
.mbox-icon { | |||
display: inline-block; | |||
} | } | ||
.mbox-icon img { | .mbox-icon img { | ||
opacity: .5; | opacity: .5; | ||
margin-right: | /*margin-right: 4px;*/ | ||
width: 14px; | width: 14px; | ||
height: auto; | height: auto; | ||
background: none; | |||
} | |||
.mbox-icon img:last-child { | |||
margin-right: 10px; | |||
} | } | ||
Revision as of 19:55, 4 May 2021
.mbox {
margin-top: 0.4rem;
border-radius: 8px;
color: #72777d;
font-size: 0.875rem;
background: #f8f9fa;
display: flex;
flex-direction: column;
position: relative;
}
.mbox.mbox-high {
background: #fee7e6;
}
.mbox.mbox-med {
background: #fef6e7;
}
.mbox-title {
padding: 10px 15px;
display: flex;
align-items: center;
font-weight: bold;
}
.mbox-icon {
display: inline-block;
}
.mbox-icon img {
opacity: .5;
/*margin-right: 4px;*/
width: 14px;
height: auto;
background: none;
}
.mbox-icon img:last-child {
margin-right: 10px;
}
.mbox-text {
position: absolute;
z-index: 10;
padding: 15px 20px;
border-radius: 8px;
background: inherit;
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.0625), 0 10px 10px rgba(0, 0, 0, 0.055);
opacity: 0;
visibility: hidden;
transition: opacity 0.2s ease, box-shadow 0.2s ease;
}
.mbox:hover .mbox-text {
opacity: 1;
visibility: visible;
}
@media only screen and (max-width: 720px) {
.mbox {
margin: 0.4rem -20px 0 -20px;
}
.mbox-title {
padding: 10px 20px;
}
}
/* Dark mode */
html.skin-citizen-dark .mbox {
background: #1d2129;
color: #a0a1a5;
}
html.skin-citizen-dark .mbox-icon img {
filter: invert(1);
}
html.skin-citizen-dark .mbox.mbox-high {
background: #b32424;
color: #fee7e6;
}
html.skin-citizen-dark .mbox.mbox-med {
background: #ac6600;
color: #fef6e7;
}
html.skin-citizen-dark .mbox.mbox-med a,
html.skin-citizen-dark .mbox.mbox-high a {
color: inherit;
text-decoration: underline !important;
}