MediaWiki:Common.css: Difference between revisions

From Rhythm Game Wiki
Jump to navigation Jump to search
mNo edit summary
Line 3: Line 3:
/* Rizline font */
/* Rizline font */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');




Line 14: Line 13:
     overflow-wrap: anywhere;
     overflow-wrap: anywhere;
}
}




Line 22: Line 20:
     cursor: help;
     cursor: help;
}
}


/* Template:TriviaBox */
/* Template:TriviaBox */
Line 29: Line 26:
     display: none;
     display: none;
}
}


/* Template:GadviaScoreCalculator */
/* Template:GadviaScoreCalculator */

Revision as of 19:56, 9 January 2025

/* CSS placed here will be applied to all skins */

/* Rizline font */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');


/* General utility classes */
.nowrap {
    white-space: nowrap;
}

.wrap-anywhere {
    overflow-wrap: anywhere;
}


/* Template:Tooltip */
.dotted-underline {
    border-bottom: 1px dotted black;
    cursor: help;
}

/* Template:TriviaBox */
/* Hide by default, more CSS is in [[MediaWiki:Gadget-main-trivia-box.css]] */
.rgwiki-main-trivia-box {
    display: none;
}

/* Template:GadviaScoreCalculator */
/* "Disabled gadget" message */
.rgwiki-gadvia-score-calculator .rgwiki-gadvia-score-calculator-disabled {
    border-color: #bbbbbb;
    border-style: solid;
    border-width: 0 6px 0 6px;
    border-radius: 6px;
    background-color: #bbbbbb1f;
    padding: 0.5em 1em;
    margin: 1em;
    display: block !important;
    color: #666;
}