The Promised Neverland Wiki
Advertisement
The Promised Neverland Wiki

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/***** CSS placed here will be applied to all skins on the entire site. *****/

/*** Imports ***/
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans|Noto+Sans+JP');

/*** ARTICLE COSTUMIZATION ***/

#WikiaArticle, h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif;
}
 
#WikiaArticle, #WikiaRail {
    font-family: 'Josefin Sans', sans-serif; 
}

.WikiaArticle {
   font-size:15px !important;
   line-height:21px !important;
}

/* Activity Feed Costumization*/
.activityfeed > li {
	background-color: #ffd199;
	border-left: 5px solid #ffd199;
	border-radius: 3px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
	margin: 0.5em;
	overflow: hidden;
	padding-left: 3em;
	transition: all 0.3s;
}
.activityfeed > li.activity-type-edit {
	border-left-color: #FF8C00;
}
.activityfeed > li.activity-type-edit:hover {
	border-left-color: #FF4500;
}
.activityfeed > li.activity-type-new {
	border-left-color: #BAFA0C;
}
.activityfeed > li.activity-type-new:hover {
	border-left-color: #9B8E23;
}
.activityfeed > li.activity-type-talk {
	border-left-color: #FFFF00;
}
.activityfeed > li.activity-type-talk:hover {
	border-left-color: #FFD700;
}
.activityfeed > li.activity-type-categorization {
	border-left-color: #0fd4c5;
}
.activityfeed > li.activity-type-categorization:hover {
	border-left-color: #02a397;
}
.activityfeed > li:hover {
	background-color: #82502D;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}
Advertisement