Jump to content

User:The Son of Man/modern.css: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Created page with 'a { color: #002bb8; } #mw_portlets { width: 10em; }'
 
No edit summary
Line 1: Line 1:
/* Set link colors back to the Monobook colors */
a {
a {
color: #002bb8;
color: #002bb8;
}
}


/* more visible visited link color */
#mw_portlets {
a:visited {
width: 10em;
color: #9d4cb1;
}



/* Reduce width of side bar */
#searchInput {
width: 9.5em;
}
#mw_content {
margin-left: 10em;
}



/* change style "Article Discussion View source" etc links */
#mw_content {
border-top: none;
}

#p-cactions li.selected {
background-color: #ddd;
}

#p-cactions li.selected a,
#p-cactions li.selected a:hover,
#p-cactions li.selected a:visited {
color: #000;
}

#p-cactions a {
text-decoration: none !important;
}

#p-cactions li {
margin: 0;
padding: 0 .8em 0 .8em;
}

#p-cactions li:first-child {
margin-left: .5em;
}

#p-cactions li:hover {
background-color: #ddd;
color: #fff;
}



/* Fix locked icon position */
#protected-icon {
top: 3px !important;
}
}

Revision as of 21:08, 13 August 2008

/* Set link colors back to the Monobook colors */
a {
  color: #002bb8;
}

/* more visible visited link color */
a:visited {
  color: #9d4cb1;
}



/* Reduce width of side bar */
#searchInput {
  width: 9.5em;
}
#mw_content {
  margin-left: 10em;
}



/* change style "Article Discussion View source" etc links */
#mw_content {
  border-top: none;
}

#p-cactions li.selected {
  background-color: #ddd;
}

#p-cactions li.selected a,
#p-cactions li.selected a:hover,
#p-cactions li.selected a:visited {
  color: #000;
}

#p-cactions a {
  text-decoration: none !important;
}

#p-cactions li {
  margin: 0;
  padding: 0 .8em 0 .8em;
}

#p-cactions li:first-child {
  margin-left: .5em;
}

#p-cactions li:hover {
  background-color: #ddd;
  color: #fff;
}



/* Fix locked icon position */
#protected-icon {
  top: 3px !important;
}