Difference between revisions of "MediaWiki: Common.css"

From Wolverhampton Light and Matter
Jump to: navigation, search
Line 8: Line 8:
 
/* visited link */
 
/* visited link */
 
a:visited {
 
a:visited {
     color: green;
+
     color: red;
 
}
 
}
  
 
/* mouse over link */
 
/* mouse over link */
 
a:hover {
 
a:hover {
     color: hotpink;
+
     color: #255ba7;
 +
  text-decoration: underline;
 
}
 
}
  

Revision as of 22:11, 29 March 2017

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

/* unvisited link */
a:link {
    color: #255ba7;
}

/* visited link */
a:visited {
    color: red;
}

/* mouse over link */
a:hover {
    color: #255ba7;
  text-decoration: underline;
}

/* selected link */
a:active {
    color: blue;
}


/* Customisation of the navbar */

/* navbar */

.navbar-default {
  background-color:white;
  background-image: none;
  background-repeat: no-repeat;
  border-color:white;
 }

.navbar-brand img {
   height: 45px;
  width: auto;
}


/* Style of the tweeter feed */

#tw-list {
    margin-left: 43px;
    padding: 0;
}

#tw-list li{
    list-style:decimal;
    margin-bottom: 2px;
    padding: 4px;
}

/* REMOVES THE IMAGES FROM THE EXTERNAL LINKS  */

div#content a.external[href ^="https://"] {
    background-image: none;
    padding-right: 0;
}

div#content a.external[href ^="http://"] {
    background-image: none;
    padding-right: 0;
}

/* REMOVE THE TITLE FROM THE MAIN PAGE */

body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { display: none; } 

/* DEFINES THE FONTS, SIZES, AND COLORS OF THE WIKI */

h1 {
	font-family: Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
	font-size: 24px;
	font-style: normal;
	font-variant: normal;
	font-weight: 500;
	line-height: 26px;
        color: #255ba7;
}

h2 {
	font-family: Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
	font-size: 23px;
	font-style: normal;
	font-variant: normal;
	font-weight: 500;
	line-height: 21px;
        color: #255ba7;
}

h3 {
	font-family: Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
	font-size: 20px;
	font-style: normal;
	font-variant: normal;
	font-weight: 500;
	line-height: 15px;
        color: #255ba7;
}

p {
	font-family: Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
	font-size: 16px;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 20px;

}

ol {
	font-family: Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
	font-size: 18px;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 20px;
}

ul {
	font-family: Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
	font-size: 18px;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 20px;
}

blockquote {
	font-family: Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
	font-size: 21px;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 30px;
        color: #c04253;
}
pre {
	font-family: Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
	font-size: 15px;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 18px;
}