MediaWiki:Timeless.css: Difference between revisions

From Practices and Politics of Representation
Jump to navigation Jump to search
Created page with "All CSS here will be loaded for users of the Timeless skin: Timeless dark mode başlangıç: body { background-color: #121212; color: #e0e0e0; } a, a:visited { color: #90caf9; } a:hover { color: #ffffff; } #mw-site-navigation, #mw-site-tools, #mw-related-navigation { background-color: #1e1e1e; color: #ccc; border-right: 1px solid #333; } #content, .mw-body { background-color: #181818; color: #e0e0e0; } pre, code { background-color: #1e..."
 
Translate CSS comments to English
 
Line 1: Line 1:
/* All CSS here will be loaded for users of the Timeless skin */
/* All CSS here will be loaded for users of the Timeless skin */
/* Timeless dark mode başlangıç */
/* Timeless dark mode - start */


body {
body {
Line 41: Line 41:
}
}


/* Timeless dark mode bitiş */
/* Timeless dark mode - end */

Latest revision as of 12:17, 7 September 2026

/* All CSS here will be loaded for users of the Timeless skin */
/* Timeless dark mode - start */

body {
  background-color: #121212;
  color: #e0e0e0;
}

a, a:visited {
  color: #90caf9;
}

a:hover {
  color: #ffffff;
}

#mw-site-navigation, #mw-site-tools, #mw-related-navigation {
  background-color: #1e1e1e;
  color: #ccc;
  border-right: 1px solid #333;
}

#content, .mw-body {
  background-color: #181818;
  color: #e0e0e0;
}

pre, code {
  background-color: #1e1e1e;
  color: #ccc;
}

button, input[type="submit"], .mw-ui-button {
  background-color: #2a2a2a;
  color: #ddd;
  border: 1px solid #444;
}

button:hover, input[type="submit"]:hover {
  background-color: #333;
}

/* Timeless dark mode - end */