MediaWiki:Monobook.css: Difference between revisions

From Unofficial Homecoming Wiki
Jump to navigation Jump to search
imported>TonyV bot
m (Restoring original text)
No edit summary
 
(15 intermediate revisions by 3 users not shown)
Line 1: Line 1:
/* Exclude logo to be change with or without DarkMode */
.client-dark-mode .mw-wiki-logo {
filter: invert( 1 ) hue-rotate( 180deg );
}
body {
body {
background: #120646 url("skins/monobook/images/headbg.png") 0 0 repeat-y;
  background: #283C71 url("skins/assets/headbg.png") 0 0 repeat-y;
}
 
#content {
  font-family: sans-serif;
}
}


.pBody {
.pBody {
   background-color: #ccdaff;
   background-color: #ccdaff;
   background-image: url("skins/monobook/images/portletbg.png");
   background-image: url("skins/assets/portletbg.png");
   background-repeat: repeat-x;
   background-repeat: repeat-x;
   border-top: 1px solid white;
   border-top: 1px solid white;
Line 15: Line 27:


.portlet ul {
.portlet ul {
   list-style-image: url("skins/monobook/images/bullet.gif");
   list-style-image: url("skins/assets/bullet.gif");
}
}


.portlet h5 {
.portlet h3 {
   color: white;
   color: white;
   font-size: 105%;
   font-size: 105%;
Line 35: Line 47:
#p-cactions li {
#p-cactions li {
   border-bottom: white;
   border-bottom: white;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
}
}


#p-cactions li a {
#p-cactions li a {
   background: #01387e url("skins/monobook/images/unselectbg.jpg") repeat-x scroll top left;
   background: #01387e url("skins/assets/unselectbg.jpg") repeat-x scroll top left;
   color: white;
   color: white;
  z-index: 0;
}
/* For some reason, this isn't working in IE 7.  Probably the result of a crappy browser, or it
  might be defined as ! important or something in the IE-specific templates.  I'll check later,
  it's not that big a deal.  --TonyV */
#p-cactions li.selected {
  border-color: #ffffff;
}
}


#p-cactions li.selected a {
#p-cactions li.selected a {
   background: #007f28 url("skins/monobook/images/selectbg.jpg") 0 0 repeat-x;
   background: #007f28 url("skins/assets/selectbg.jpg") 0 0 repeat-x;
   color: #002bb8;
   color: #002bb8;
  z-index: 0;
}
}


Line 54: Line 73:


#p-cactions li a:hover {
#p-cactions li a:hover {
   background: white url("skins/monobook/images/hoverbg.jpg") repeat-x scroll top left;
   background: white url("skins/assets/hoverbg.jpg") repeat-x scroll top left;
   overflow: hidden;
   overflow: hidden;
}
   z-index: 0;
 
a.new, #p-personal a.new {
   color: #ffcccc;
}
 
a.new:visited, #p-personal a.new:visited {
  color: #a55858;
}
}


Line 71: Line 83:


#p-personal li a:hover {
#p-personal li a:hover {
   color: #283c71;
   /* color: #283c71; -- Old-style color without the background below */
  background: #01387e url("skins/assets/hoverbg.jpg") repeat-x scroll top left;
}
}
h4 { font-size: 122%; }
h4 .editsection { font-size: 82%; font-weight: normal; }
h5 { font-size: 112%; }
h5 .editsection { font-size: 89%; font-weight: normal; }
h6 { font-size: 100%;  }
h6 .editsection { font-size: 100%; font-weight: normal; }

Latest revision as of 08:10, 1 September 2021

/* Exclude logo to be change with or without DarkMode */

.client-dark-mode .mw-wiki-logo {

filter: invert( 1 ) hue-rotate( 180deg );

}

body {
  background: #283C71 url("skins/assets/headbg.png") 0 0 repeat-y;
}

#content {
  font-family: sans-serif;
}

.pBody {
  background-color: #ccdaff;
  background-image: url("skins/assets/portletbg.png");
  background-repeat: repeat-x;
  border-top: 1px solid white;
  border-right: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
}

.portlet ul {
  list-style-image: url("skins/assets/bullet.gif");
}

.portlet h3 {
  color: white;
  font-size: 105%;
  text-transform: capitalize;
  font-weight: bold;
}

#p-cactions .pBody {
  background-image: none;
}

#p-cactions ul {
  list-style-type: none;
}

#p-cactions li {
  border-bottom: white;
}

#p-cactions li a {
  background: #01387e url("skins/assets/unselectbg.jpg") repeat-x scroll top left;
  color: white;
  z-index: 0;
}

/* For some reason, this isn't working in IE 7.  Probably the result of a crappy browser, or it
   might be defined as ! important or something in the IE-specific templates.  I'll check later,
   it's not that big a deal.  --TonyV */
#p-cactions li.selected {
  border-color: #ffffff;
}

#p-cactions li.selected a {
  background: #007f28 url("skins/assets/selectbg.jpg") 0 0 repeat-x;
  color: #002bb8;
  z-index: 0;
}

#p-cactions .new a {
  color: #bed0ff;
}

#p-cactions li a:hover {
  background: white url("skins/assets/hoverbg.jpg") repeat-x scroll top left;
  overflow: hidden;
  z-index: 0;
}

#p-personal li a {
  color: white;
}

#p-personal li a:hover {
  /* color: #283c71; -- Old-style color without the background below */
  background: #01387e url("skins/assets/hoverbg.jpg") repeat-x scroll top left;
}

h4 { font-size: 122%; }
h4 .editsection { font-size: 82%; font-weight: normal; }
h5 { font-size: 112%; }
h5 .editsection { font-size: 89%; font-weight: normal; }
h6 { font-size: 100%;  }
h6 .editsection { font-size: 100%; font-weight: normal; }