MediaWiki:Common.css
Jump to navigation
Jump to search
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */ #toc { float: right }; .rating { display: flex; flex-direction: row-reverse; justify-content: center; } .rating > input{ display:none; } .rating > label { position: relative; width: 1.1em; font-size: 15vw; color: #FFD700; cursor: pointer; } .rating > label::before{ content: “\2605”; position: absolute; opacity: 0; } .rating > label:hover:before, .rating > label:hover ~ label:before { opacity: 1 !important; } .rating > input:checked ~ label:before{ opacity:1; } .rating:hover > input:checked ~ label:before{ opacity: 0.4; }