MediaWiki:Common.css: Difference between revisions

From Fables and Fantasy Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(29 intermediate revisions by 2 users not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* === SITE BACKGROUND === */
body {
  background-image: url('https://i.imgur.com/FSwZjbL.png'), url('https://i.imgur.com/qeVTmTf.png');
  background-attachment: scroll, scroll;
  background-repeat: no-repeat, repeat;
  background-position-x: left;
  background-blend-mode: normal;
  background-size: auto;
  z-index: 1 !important, 1 !important;
  border: none !important;
}


/* === BACKGROUND COLOUR OF CONTENT TITLE AND PAGES === */
/* === BACKGROUND COLOUR OF CONTENT TITLE AND PAGES === */
#content {  
#content {
   background-color: #F1E9D2;  
   background-color: #F1E9D2;
}
}


Line 9: Line 21:
@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English:ital@0;1&display=swap');


/* === MAKE IT THE DEFAULT FONT FOR ALL PAGE CONTENT === */
/* === DEFAULT FONT === */
body,
body,
#content,
#content,
Line 25: Line 37:
}
}


/* === HEADINGS USE IM FELL ENGLISH TOO === */
/* === SET BODY TEXT SIZE ONLY === */
h1, h2, h3, h4, h5, h6 {
#mw-content-text p,
   font-family: "IM Fell English", serif !important;
#mw-content-text li,
#mw-content-text td,
#mw-content-text th,
#mw-content-text a {
   font-size: 16px;
}
}


/* === OPTIONAL CSS CLASSES FOR INLINE USE === */
/* === OPTIONAL INLINE CLASSES === */
.im-fell-english-regular {
.im-fell-english-regular {
   font-family: "IM Fell English", serif;
   font-family: "IM Fell English", serif;
Line 43: Line 59:
}
}


/* === MATCH ACTION/NAMESPACE TABS TO CONTENT BACKGROUND === */
/* === PAGE ACTION TABS: READ, DISCUSSION, EDIT, VIEW HISTORY, MORE === */
#p-views li,
#p-views li,
#p-namespaces li,
#p-views li a,
.vector-menu-tabs li {
.vector-menu-tabs li,
   background-color: #F1E9D2 !important;
.vector-menu-tabs li a,
.vector-menu-tabs .selected a {
   background: #F1E9D2 !important;
   border: none !important;
   border: none !important;
}
}


#p-views li.selected,
#p-views li a:hover,
#p-namespaces li.selected,
.vector-menu-tabs li a:hover {
.vector-menu-tabs li.selected {
  background: #F1E9D2 !important;
   background-color: #F1E9D2 !important;
}
 
/* === "MORE" TAB & DROPDOWN === */
#p-cactions,
#p-cactions .vector-menu-content,
#p-cactions li,
#p-cactions li a {
   background: #F1E9D2 !important;
   border: none !important;
   border: none !important;
}
}


#p-views li a,
#p-cactions li a:hover {
#p-namespaces li a,
   background: #F1E9D2 !important;
.vector-menu-tabs li a {
   border: none !important;
}
}


/* === TOP PAGE ACTION TABS: READ, EDIT SOURCE, VIEW HISTORY === */
 
#ca-view,
/* === FORCE TOP TABS BAR TO USE THE SAME BACKGROUND IMAGE === */
#ca-edit,
#mw-head{
#ca-history,
  background-image: url('https://i.imgur.com/FSwZjbL.png'), url('https://i.imgur.com/qeVTmTf.png');
#ca-watch,
  background-attachment: local, local;
#ca-unwatch,
  background-repeat: no-repeat, repeat;
#ca-talk,
  background-position-x: left;
#ca-addsection,
  background-blend-mode: normal;
#ca-more {
  background-size: auto;
   background-color: #F1E9D2 !important;
   z-index: 1 !important, 1 !important;
   border: none !important;
   border: none !important;
}
}


#ca-view a,
/* === SIDEBAR BOXES UNDER LINKS === */
#ca-edit a,
#mw-panel .portal {
#ca-history a,
#ca-watch a,
#ca-unwatch a,
#ca-talk a,
#ca-addsection a,
#ca-more a {
   background-color: #F1E9D2 !important;
   background-color: #F1E9D2 !important;
   border: none !important;
  padding: 5px;
  margin-bottom: 10px;
   border-radius: 4px;
}
}

Latest revision as of 14:59, 8 September 2025

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

/* === SITE BACKGROUND === */
body {
  background-image: url('https://i.imgur.com/FSwZjbL.png'), url('https://i.imgur.com/qeVTmTf.png');
  background-attachment: scroll, scroll;
  background-repeat: no-repeat, repeat;
  background-position-x: left;
  background-blend-mode: normal;
  background-size: auto;
  z-index: 1 !important, 1 !important;
  border: none !important;
}

/* === BACKGROUND COLOUR OF CONTENT TITLE AND PAGES === */
#content {
  background-color: #F1E9D2;
}

/* === IMPORT IM FELL ENGLISH FROM GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English:ital@0;1&display=swap');

/* === DEFAULT FONT === */
body,
#content,
#mw-content-text,
#mw-content-text p,
#mw-content-text li,
#mw-content-text td,
#mw-content-text th,
#mw-content-text a,
#mw-panel,
.vector-menu,
#p-personal,
#footer {
  font-family: "IM Fell English", serif !important;
}

/* === SET BODY TEXT SIZE ONLY === */
#mw-content-text p,
#mw-content-text li,
#mw-content-text td,
#mw-content-text th,
#mw-content-text a {
  font-size: 16px;
}

/* === OPTIONAL INLINE CLASSES === */
.im-fell-english-regular {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-style: normal;
}

.im-fell-english-regular-italic {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-style: italic;
}

/* === PAGE ACTION TABS: READ, DISCUSSION, EDIT, VIEW HISTORY, MORE === */
#p-views li,
#p-views li a,
.vector-menu-tabs li,
.vector-menu-tabs li a,
.vector-menu-tabs .selected a {
  background: #F1E9D2 !important;
  border: none !important;
}

#p-views li a:hover,
.vector-menu-tabs li a:hover {
  background: #F1E9D2 !important;
}

/* === "MORE" TAB & DROPDOWN === */
#p-cactions,
#p-cactions .vector-menu-content,
#p-cactions li,
#p-cactions li a {
  background: #F1E9D2 !important;
  border: none !important;
}

#p-cactions li a:hover {
  background: #F1E9D2 !important;
}


/* === FORCE TOP TABS BAR TO USE THE SAME BACKGROUND IMAGE === */
#mw-head{
  background-image: url('https://i.imgur.com/FSwZjbL.png'), url('https://i.imgur.com/qeVTmTf.png');
  background-attachment: local, local;
  background-repeat: no-repeat, repeat;
  background-position-x: left;
  background-blend-mode: normal;
  background-size: auto;
  z-index: 1 !important, 1 !important;
  border: none !important;
}

/* === SIDEBAR BOXES UNDER LINKS === */
#mw-panel .portal {
  background-color: #F1E9D2 !important;
  padding: 5px;
  margin-bottom: 10px;
  border-radius: 4px;
}