User:Ajhg/common.css: Difference between revisions
From Makerpedia
No edit summary |
No edit summary |
||
| Line 11: | Line 11: | ||
color: var(--font-color); | color: var(--font-color); | ||
position: | position: fixed; | ||
left: | left: 110vw; | ||
bottom: 10vh; | bottom: 10vh; | ||
width: 50vw; | width: 50vw; | ||
Latest revision as of 04:00, 24 March 2025
muse-growl {
--font-size: 1.5em;
--padding-size: 0;
--font-color: #555;
--background-color: #fff;
--border-radius: .25em;
font-size: var(--font-size);
background-color: var(--background-color);
border-radius: var(--border-radius);
color: var(--font-color);
position: fixed;
left: 110vw;
bottom: 10vh;
width: 50vw;
height: 3em;
padding-left: 1em;
text-align: left;
display: block;
border: 1px solid rgba(0,0,0,.2);
box-shadow: 0px 4px 4px rgba(0,0,0,.2);
box-sizing: border-box;
line-height: 3em;
transition: left .5s ease;
}
muse-growl[alert] {
left: 40vw;
}
muse-growl.warn {
color: #700;
}