MediaWiki:Monobook.css: Difference between revisions

From Practices and Politics of Representation
Jump to navigation Jump to search
No edit summary
Translate CSS comments to English
 
Line 5: Line 5:
}
}


/* Başlıklar */
/* Headings */
h1, h2, h3, h4, h5, h6,
h1, h2, h3, h4, h5, h6,
.firstHeading {
.firstHeading {
Line 11: Line 11:
}
}


/* Bağlantılar */
/* Links */
a, a:link {
a, a:link {
   color: #80d8ff !important;
   color: #80d8ff !important;
Line 24: Line 24:
}
}


/* Menü, yan panel ve alt bilgi */
/* Menu, sidebar and footer */
#p-logo,
#p-logo,
.portlet,
.portlet,
Line 35: Line 35:
}
}


/* Arama kutusu ve input alanları */
/* Search box and input fields */
input, select, textarea, button {
input, select, textarea, button {
   background-color: #2b2b2b !important;
   background-color: #2b2b2b !important;
Line 42: Line 42:
}
}


/* Kod blokları */
/* Code blocks */
pre, code {
pre, code {
   background-color: #222 !important;
   background-color: #222 !important;
   color: #ccc !important;
   color: #ccc !important;
}
}

Latest revision as of 12:17, 7 September 2026

/* Ana arka plan ve metin */
body, #content, #bodyContent, .mw-body-content {
  background-color: #121212 !important;
  color: #e0e0e0 !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.firstHeading {
  color: #ffffff !important;
}

/* Links */
a, a:link {
  color: #80d8ff !important;
}

a:visited {
  color: #ce93d8 !important;
}

a:hover {
  color: #ffffff !important;
}

/* Menu, sidebar and footer */
#p-logo,
.portlet,
#column-content,
#footer,
#column-one {
  background-color: #1b1b1b !important;
  color: #ccc !important;
  border: none !important;
}

/* Search box and input fields */
input, select, textarea, button {
  background-color: #2b2b2b !important;
  color: #eee !important;
  border: 1px solid #444 !important;
}

/* Code blocks */
pre, code {
  background-color: #222 !important;
  color: #ccc !important;
}