Diferencia entre revisiones de «MediaWiki:Vector.css»

De Wiki de Universo Zelda
Saltar a: navegación, buscar
Línea 149: Línea 149:
 
left: 0;
 
left: 0;
 
top: -150px;
 
top: -150px;
}
 
 
/*
 
  Table pager (e.g. Special:Imagelist)
 
  - remove underlines from the navigation link
 
  - collapse borders
 
  - set the borders to outsets (similar to Special:Allmessages)
 
  - remove line wrapping for all td and th, set background color
 
  - restore line wrapping for the last two table cells (description and size)
 
*/
 
.TablePager_nav a { text-decoration: none; }
 
.TablePager { border-collapse: collapse; }
 
.TablePager, .TablePager td, .TablePager th {
 
border: 1px solid #426787;
 
padding: 0 0.15em 0 0.15em;
 
}
 
.TablePager th { background-color: #1D578B }
 
.TablePager td { background-color: #17456E }
 
.TablePager tr:hover td { background-color: #1D578B }
 
 
.imagelist .TablePager_col_links { background-color: #1D578B }
 
.imagelist th.TablePager_sort { background-color: #ccccff }
 
 
 
 
fieldset#mw-searchoptions {
 
margin: 0;
 
padding-left: 0.75em !important;
 
padding-right: 0.75em !important;
 
padding-bottom: 0.5em !important;
 
padding-top: 0.5em !important;
 
border: none;
 
background-color: #1D578B;
 
border: 1px solid #426787 !important;
 
border-top-width: 0 !important;
 
}
 
 
.mw-search-formheader {
 
background-color: #17456E;
 
margin-top: 1em;
 
border: 1px solid #426787;
 
}
 
 
fieldset#mw-searchoptions div.divider {
 
clear: both;
 
border-bottom: 1px solid #426787;
 
padding-top: 0.5em;
 
margin-bottom: 0.5em;
 
}
 
.mw-search-formheader div.search-types ul li.current a {
 
color: #d2d2d2;
 
cursor: default;
 
}
 
 
 
div#mw-js-message { /* @todo - unused? */
 
margin: 1em 5%;
 
padding: 0.5em 2.5%;
 
border: solid 1px #E7EA12;
 
background-color: #1D578B;
 
 
}
 
}

Revisión del 13:38 19 ene 2016

/* El CSS colocado en esta página afectará a los usuarios que usen la apariencia "Vector" */

/* Framework */
body {
	background-color: #4a6219;
}

/* Contenido página */
div#content {
	border: 1px solid #37411a;
	border-right-width: 0;
	background-color: #8b8b46;
	color: #e2e1e1;
	margin-left: 10em;
	padding: 1em;
}

/* Head */
#mw-page-base {
	background-color: #8b8b46;
}

/* Navigation Containers */
#left-navigation {
	left: 10em;
}

/* Page History */
#bodyContent ul#pagehistory li{
  border: 1px solid #17456E;
}

#bodyContent ul#pagehistory li.selected{
  background-color: #4a6219;
  border: 1px dashed #426787;
}

/* Links */
a {
	text-decoration: none;
	color: #f4f26b;
	background: none;
}
a:visited {
	color: #e7ea12;
}
a:active {
	color: #F4F26B;
}
a:hover {
	text-decoration: underline;
}
a.stub {
	color: #F4F26B;
}

#bodyContent a.new {
    color: #da0c05;
}

a.new, #p-personal a.new {
	color: #da0c05;
}
a.new:visited, #p-personal a.new:visited {
	color: #da0c05;
}

/* Categorías */
.catlinks {
	border: 1px solid #37411a;
	background-color: #4a6219;
}

/* Namespaces and Views */
div.vectorTabs ul li { /* @todo */
	background-color: transparent;
	background-image: none;
}

div.vectorTabs li.icon a { /* @todo */
	background-position: bottom right;
	background-repeat: no-repeat;
}

div.vectorTabs li a, div.vectorTabs li a span {
	color: #F4F26B;
}

div.vectorTabs li.selected a,
div.vectorTabs li.selected a:visited{
	color: #e2e1e1;
	text-decoration: none;
	background-color:#8b8b46;
}
div.vectorTabs li.new a,
div.vectorTabs li.new a:visited{
	color: #da0c05;
}

/* Search */
div#simpleSearch {
	border: solid 1px #37411a;
	background-color: #8b8b46;
	background-image: none;
}

div#simpleSearch input#searchInput {
	color:#e2e1e1;
}

.mw-search-result-data {
	color: #e2e1e1;
}

/* Panel */
#mw-panel {
	padding: 0;
}

div#mw-panel div.portal div.body ul li a {
	color: #F4F26B;
}
div#mw-panel div.portal div.body ul li a:visited {
	color: #F4F26B;
}

/* Sidebar */
div#mw-panel div.portal h3 {
	color: #F4F26B;
}

#mw-panel.collapsible-nav .portal h3 a,
#mw-panel.collapsible-nav .portal h5 a {
	color: #E7EA12 !important;
}

#mw-panel.collapsible-nav .portal{
	background: none;
	border-bottom: 1px solid #284360;
}

/* Footer */
div#footer ul li {
	color: #e2e1e1;
}

/* Logo */
#p-logo {
	left: 0;
	top: -150px;
}