Revision as of 06:34, 7 April 2020 by Admin (talk | contribs)

MediaWiki:Common.css

From GURaaS Developer Community

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 */

/*GENERAL VISUAL STYLE FOR WIKI*/

/**Settings for full background**/
#content-wrapper{
background-image: linear-gradient(to bottom, rgba(57, 197, 232, 0.85), rgba(114, 100, 189, 0.85)),
url(/resources/assets/images_dev/Site_Background_Clear.jpg);
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

/**Settings for full background of actual content**/
#content{
background-color: rgba(255,255,255, 0.75);
}

/**Settings for header**/
#header-wrapper{
background: rgba(72, 190, 227);
border-bottom: rgba(72, 190, 227));
}

/**Settings for logo**/
#logo{
color:rgba(255,255,255, 1);
}

/* ------------------------------------------------------------------------- */

/**MAIN PAGE MENU**/
/**Settings for main page menu general**/
#mainpagenavigation {
display:block;
border-collapse:collapse;
text-align:center
}

/**Settings for main page menu headers**/
#mainpagenavigation th {
font-size:20px;
color: #39699b;
background-color: rgba(255, 255, 255);
font-weight:400;
height:48px;
text-align:center;
font-size-adjust:0.43
}

/**Settings for main page menu content**/
#mainpagenavigation td {
background-color: rgba(255, 255, 255,0.4);
color: #39699b;
}


/* ------------------------------------------------------------------------- */

/*INFOBOX VISUAL SETTINGS*/
.infobox {
    background-image: linear-gradient(#c6c6c6, #f2f2f2);
    border: 1px solid #aaa;
    border-radius: 10px 10px 10px 10px;
    float: right;
    margin: 0 0 1em 1em;
    padding: 1em;
    width: 400px;
}
.infobox-title {
    font-size: 2em;
    text-align: center;
}
.infobox-image {
    text-align: center;
}
.infobox th {
    text-align: center;
    vertical-align: top;
    width: 120px;
}
.infobox td {
    vertical-align: top;
}