More actions
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.
/* Styles for the Wikia staff page */
/* Created by NHeoShadow */
/* Licensed under CC BY-SA. Originates from the Galaxypedia, https://robloxgalaxy.wiki/wiki/MediaWiki:Staff.css */
/* User cards for the Wikia staff page, now by using CSS grid! */
div.UserGrid-container{
display: grid;
grid-template-columns: 50% 50%;
}
div.UserGrid, div.StaffGrid{
background-color: var(--mainbgcolor-dark);
border-radius: 1px;
border: 2px solid var(--mainbordercolorP);
opacity: 0.87;
display: block;
transition: 0.08s;
box-shadow: 0px 1px 3px black;
}
div.UserGrid{
padding: 8px;
margin: 3px;
padding-left: 10px;
}
div.UserGrid:hover{
background-color: var(--mainbgcolor);
box-shadow: 0px 1px 1.4px black;
transform: translate(0px, 1.2px);
-webkit-transform: translate(0px, 1.2px);
opacity: 1;
}
div.UserGrid a{
display: block;
font-size: 22px;
font-weight: bold;
text-decoration: none;
}
div.UserGrid a:hover{
text-decoration: none;
}
div.UserGrid p{
display: block;
font-size: 14.4px;
line-height: 17px;
text-decoration: none;
padding: 0px;
margin: 0px;
margin-top: 3px;
font-weight: normal;
font-variant: small-caps;
}