MediaWiki:Common.css: Difference between revisions

From JJSWiki
Jump to navigation Jump to search
(Trying to figure out how to affect the header section by peeking into Vector files...)
(Apparently that's what Mobile.css is for)
Tags: Manual revert Mobile edit Mobile web edit
 
(34 intermediate revisions by the same user not shown)
Line 2: Line 2:




h1 {
#firstHeading{
     font-family: 'Courier New', Courier, monospace;
     font-family: 'Courier New', Courier, monospace;
     font-weight: bold;
     font-weight: bold;
    font-size: 1.6em;
}
}


h2 {
.mw-body-content h2 {
     font-family: 'Courier New', Courier, monospace;
     font-family: 'Courier New', Courier, monospace;
     font-weight: bold;
     font-weight: bold;
Line 13: Line 14:




h3 {
.mw-body-content h3 {
     font-family: 'Courier New', Courier, monospace;
     font-family: 'Courier New', Courier, monospace;
     font-weight: bold;
     font-weight: bold;
}
#bodyContent {
  line-height: 1.5em;
  font-size: 0.8em;
}
p {
  line-height: 1.5em;
}
}


Line 22: Line 32:
}
}


#mw-head-base {
#mw-head {
background-color: red;
    background: linear-gradient(#F6E7E1, #F6E7E1, #E7F0ED);
}
 
 
 
#content.mw-body {
    background: linear-gradient(to right, white, white, #E7F0ED);
}
 
#bodyContent {
    background-color: white;
}
}
/* Let's kill some tabs */
#ca-nstab-main { display: none !important; }
#ca-nstab-user { display: none !important; }
#ca-talk { display: none !important; }
#ca-watch { display: none !important; }
#ca-unwatch { display: none !important; }

Latest revision as of 18:20, 20 April 2023

/* CSS placed here will be applied to all skins */


#firstHeading{
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 1.6em;
}

.mw-body-content h2 {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}


.mw-body-content h3 {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}

#bodyContent {
  line-height: 1.5em;
  font-size: 0.8em;
}

p {
  line-height: 1.5em;
}

body {
    background-color: #E7F0ED;
}

#mw-head {
    background: linear-gradient(#F6E7E1, #F6E7E1, #E7F0ED);
}



#content.mw-body {
    background: linear-gradient(to right, white, white, #E7F0ED);
}

#bodyContent {
    background-color: white;
}


/* Let's kill some tabs */
#ca-nstab-main { display: none !important; }
#ca-nstab-user { display: none !important; }
#ca-talk { display: none !important; }
#ca-watch { display: none !important; }
#ca-unwatch { display: none !important; }