MediaWiki:Gadget-main-spoiler-warning-screen.css: Difference between revisions

From Rhythm Game Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 23: Line 23:
     font-size: 36pt;
     font-size: 36pt;
     font-weight: bold;
     font-weight: bold;
}
.rgwiki-main-spoiler-warning-screen > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1em;
}
}

Revision as of 19:24, 3 February 2025

.rgwiki-main-spoiler-warning-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;

    background-color: #000000bf;
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 18pt;
}

.rgwiki-main-spoiler-warning-screen > h1 {
    color: #fff;
    font-size: 36pt;
    font-weight: bold;
}

.rgwiki-main-spoiler-warning-screen > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1em;
}