Jump to content

User:Grorland/vector.css: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Grorland (talk | contribs)
No edit summary
Grorland (talk | contribs)
No edit summary
Line 2: Line 2:
font-family: Helvetica;
font-family: Helvetica;
font-weight: 200;
font-weight: 200;
font-size: 22px;
font-size: 26px;
background-color: #111;
background-color: #111;
color: #e8e8e8;
color: #aaa;
line-height: 1.5;
line-height: 1.5;
}
}
Line 36: Line 36:
display: block;
display: block;
padding: 5px 10px;
padding: 5px 10px;
}
body[data-mode="dark"] pre code {
background-color: #585858;
color: #e8e8e8;
}


body[data-mode="dark"] a {
color: #d1ae00;
}

body[data-mode="dark"] a:hover {
color: gold;
}
}

Revision as of 17:36, 11 April 2022

body, #mw-panel {
  font-family: Helvetica;
  font-weight: 200;
  font-size: 26px;
  background-color: #111;
  color: #aaa;
  line-height: 1.5;
}

#mw-panel {
	font-size: 18px;
}

#mw-head, .mw-body {
	background-color: #111;
	color: #e8e8e8;
}

a:link:visited {
 color: #d33bf0 !important;
}
a:link, a:link:hover, a:link:active {
  color: #d1ae00 !important;
}
a:link {
  text-decoration: none;
  font-weight: normal;
}
pre {
  white-space: pre-wrap;
}
pre code {
  background-color: #eff0f1;
  color: #393318;
  font-family: monospace;
  display: block;
  padding: 5px 10px;
}