Difference between revisions of "MediaWiki:Common.css"
From DevOps Notebook
(Created page with "→CSS placed here will be applied to all skins: .color-right { display: inline-block; height: 0.35em; background: #0f2c3f; }") |
|||
(28 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
+ | body { | ||
+ | font-weight: normal; | ||
+ | font-family:Arial,"Helvetica Neue",Helvetica,sans-serif; | ||
+ | } | ||
+ | a { | ||
+ | color: #1f99bf; | ||
+ | } | ||
+ | |||
+ | a.selected{ | ||
+ | color:#0e283a; | ||
+ | } | ||
+ | #personal h2 { | ||
+ | font-family:Arial,"Helvetica Neue",Helvetica,sans-serif; | ||
+ | } | ||
+ | .mw-body { | ||
+ | font-family:Arial,"Helvetica Neue",Helvetica,sans-serif; | ||
+ | } | ||
+ | .mw-body h1, .mw-body h2, .mw-body h3, .mw-body h4, .mw-body h5, .mw-body h6, .mw-body dt { | ||
+ | font-family:Arial,"Helvetica Neue",Helvetica,sans-serif; | ||
+ | } | ||
+ | #p-logo-text a { | ||
+ | font-family:Arial,"Helvetica Neue",Helvetica,sans-serif; | ||
+ | } | ||
.color-right { | .color-right { | ||
display: inline-block; | display: inline-block; | ||
− | height: 0. | + | height: 0.25em; |
− | background: # | + | background: #1f99bf; |
+ | |||
+ | } | ||
+ | .color-left { | ||
+ | height: 0.25em; | ||
+ | background: | ||
+ | #1f99bf; | ||
+ | } | ||
+ | |||
+ | .color-middle { | ||
+ | height: 0.25em; | ||
+ | background: | ||
+ | #1f99bf; | ||
+ | } | ||
+ | |||
+ | #firstHeading { | ||
+ | margin: 0.25em 0 0.5em; | ||
+ | border-bottom: solid 2px #0e283a; | ||
+ | } | ||
+ | |||
+ | |||
+ | #mw-page-header-links li.selected { | ||
+ | border-bottom-color: #1f99bf; | ||
+ | } | ||
+ | |||
+ | pre, .mw-code { | ||
+ | color: | ||
+ | #000; | ||
+ | background-color: | ||
+ | #eff0f1; | ||
+ | border: 0px solid | ||
+ | #666666; | ||
+ | padding: 1em; | ||
+ | white-space: pre-wrap; | ||
+ | |||
} | } |
Latest revision as of 12:13, 14 November 2019
/* CSS placed here will be applied to all skins */
body {
font-weight: normal;
font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;
}
a {
color: #1f99bf;
}
a.selected{
color:#0e283a;
}
#personal h2 {
font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;
}
.mw-body {
font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;
}
.mw-body h1, .mw-body h2, .mw-body h3, .mw-body h4, .mw-body h5, .mw-body h6, .mw-body dt {
font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;
}
#p-logo-text a {
font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;
}
.color-right {
display: inline-block;
height: 0.25em;
background: #1f99bf;
}
.color-left {
height: 0.25em;
background:
#1f99bf;
}
.color-middle {
height: 0.25em;
background:
#1f99bf;
}
#firstHeading {
margin: 0.25em 0 0.5em;
border-bottom: solid 2px #0e283a;
}
#mw-page-header-links li.selected {
border-bottom-color: #1f99bf;
}
pre, .mw-code {
color:
#000;
background-color:
#eff0f1;
border: 0px solid
#666666;
padding: 1em;
white-space: pre-wrap;
}