Changes

From Life After BOB Wiki
16,040 bytes added ,  17:47, 9 September 2021
no edit summary
Line 1: Line 1:  
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
 +
 +
/* Roboto */
 +
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
 +
/* Aileron */
 +
@import url("https://use.typekit.net/bhd4pcd.css");
 +
/* Ariel */
 +
/* Averia */
 +
@import url('https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:wght@400;700&display=swap');
 +
 +
@font-face {
 +
  font-family: Akzidenz-Grotesk-Medium;
 +
  src: url(https://labxwiki.s3.us-east-2.amazonaws.com/resources/fonts/Akzidenz-Grotesk-Medium.otf);
 +
}
 +
 +
@font-face {
 +
  font-family: Roboto-Condensed-Regular;
 +
  src: url(https://labxwiki.s3.us-east-2.amazonaws.com/resources/fonts/RobotoCondensed-Regular.ttf);
 +
}
 +
 
body {
 
body {
 
   font-size: large;
 
   font-size: large;
 +
  font-family: "Arial",sans-serif;
 +
  font-weight: 400;
 +
  font-style: normal;
 +
  background-color: ##f1f1f1;
 +
  /* background-image: url(https://labxwiki.s3.amazonaws.com/common/thumb/Background-temp-2.png/1600px-Background-temp-2.png); */
 +
/* background-image: url(https://d2w9rnfcy7mm78.cloudfront.net/12168207/original_451377e6bf71f18de13dabbc7d064c96.png); */
 +
  background-position:center top;
 +
  background-repeat: repeat-y;
 +
  background-attachment: fixed;
 +
  background-size: cover;
 +
}
 +
 +
 +
 +
/* Mainpage */
 +
/* hide title */
 +
body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading {
 +
  display: none;
 +
}
 +
 +
.largetext{
 +
  font-size:2em;
 +
  text-align:center;
 +
  font-family:'Averia Serif Libre'
 +
}
 +
 +
.mp-main-container{
 +
  width:85%;
 +
  display:flex;
 +
  justify-content:space-between;
 +
  margin-left:auto;
 +
  margin-right:auto;
 +
  margin-bottom:1%;
 +
  margin-top:1%
 +
}
 +
 +
.mp-flex-box{
 +
display:flex;
 +
flex-direction:column;
 +
width:49%;
 +
 +
}
 +
 +
#about-container{
 +
width:100%;
 +
height:100%;
 +
 +
}
 +
 +
#categories-container{
 +
width:70%;
 +
display:block;
 +
margin-left:auto;
 +
margin-right:auto;
 +
margin-top:2%;
 +
}
 +
 +
#fe-container{
 +
width:100%;
 +
 +
}
 +
 +
#fc-container{
 +
width:80%;
 +
display:block;
 +
margin-left:auto;
 +
margin-right:auto;
 +
}
 +
 +
 +
 +
.mp-item-box{
 +
  border:2px grey solid;
 +
  border-radius:10px;
 +
}
 +
 +
.mp-title{
 +
  text-align:center;
 +
  margin-top:1em;
 +
  font-size:2em;
 +
  font-family:"Averia Serif Libre";
 +
  font-weight:400;
 +
}
 +
 +
.mp-category{
 +
  text-align:center;
 +
  font-size:0.75em;
 +
}
 +
 +
 +
.fc-text{
 +
  text-align:center;
 +
}
 +
 +
.fc-text a {}
 +
 +
.fc-text a:hover {}
 +
 +
.fc-grid{
 +
  display: grid;
 +
  justify-items:center;
 +
  align-items:center;
 +
justify-content: center;
 +
  width:100%;
 +
  row-gap:0px;
 +
  column-gap:1px;
 +
  grid-template-columns: repeat(auto-fill, 220px);
 +
  margin-bottom:5%;
 +
 +
}
 +
 +
.fc-grid>* {
 +
  width: 220px;
 +
  height:300px;
 +
  text-align:center;
 +
  border-radius:10px;
 +
  border:1px grey solid;
 +
}
 +
 +
.mp-category-grid{
 +
  display: grid;
 +
  justify-items:center;
 +
  align-items:center;
 +
justify-content: center;
 +
  width:100%;
 +
  row-gap:0px;
 +
  column-gap:1px;
 +
  grid-template-columns: repeat(auto-fill, 100px);
 +
 +
}
 +
 +
.mp-category-grid>* {
 +
  width: 100px;
 +
  height: 160px;
 +
  text-align:center;
 +
  border-radius:10px;
 +
  border:1px grey solid;
 +
}
 +
 +
 +
.fc-img img{
 +
    max-width:100%;
 +
    position: absolute;
 +
    left: -100%;
 +
    right: -100%;
 +
    top: -100%;
 +
    bottom: -100%;
 +
    margin: auto;
 +
    height: auto;
 +
    width: auto;
 +
}
 +
 +
.fc-img{
 +
margin-bottom:2em;
 +
text-align:center;
 +
width:200px;
 +
min-height: 200px;
 +
max-height: 200px;
 +
margin-top:1em;
 +
margin-left:auto;
 +
margin-right:auto;
 +
position:relative;
 +
overflow:hidden;
 +
border-radius:10px;
 +
  box-shadow:2px 2px 4px rgba(0,0,0,0.3);
 +
}
 +
 +
 +
 +
.fe-img img{
 +
  max-height:400px;
 +
  width:auto;
 +
 +
}
 +
 +
.fe-img{
 +
  height:80%
 +
}
 +
 +
 +
.mp-character-img img{
 +
  max-width:100%;
 +
  height:auto;
 +
  margin: auto;
 +
  display: block;
 +
}
 +
 +
#randompage{
 +
width:100%;
 +
margin-top:2%;
 +
 +
}
 +
 +
 +
/* Navigations */
 +
.mw-wiki-logo{
 +
  background-size:150px 150px;
 +
  margin-top:1em;
 +
}
 +
#mw-page-base{
 +
  background-color: rgba(0, 0, 0, 0);
 +
  background-image:none;
 +
}
 +
 +
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3{
 +
  background:none;
 +
}
 +
 +
#left-navigation{
 +
  margin-top:2.7em;
 +
}
 +
 +
#right-navigation{
 +
  margin-top:2.7em;
 +
}
 +
 +
.vector-menu-tabs .selected{
 +
  background:none;
 +
  font-weight:bold;
 +
  color:initial;
 +
}
 +
 +
.vector-menu-tabs li{
 +
  background:none;
 +
  margin:0 5px 0 0;
 +
}
 +
 +
.vector-menu-tabs .new a, .vector-menu-tabs .new a:visited{
 +
  color:initial;
 +
}
 +
 +
.vector-menu-tabs{
 +
  height:2.5em;
 +
  padding-left:0;
 +
}
 +
 +
.vector-menu-tabs li a{
 +
  font-size:0.75em;
 +
  padding-top:1em;
 +
}
 +
 +
#simpleSearch{
 +
  margin-top:-0.3em;
 +
}
 +
 +
/* Title fonts */
 +
h1.firstHeading{
 +
  font-family:"Averia Serif Libre";
 +
  font-weight:700;
 +
}
 +
 +
/* Body */
 +
.mw-body{
 +
  border:none;
 +
  background-color:rgba(255, 255, 255,0.87);
 +
  margin-right:0.5em;
 +
}
 +
 +
 +
/* Quote boxes */
 +
.quotebox {
 +
background-color: #F9F9F9;
 +
border: 1px solid #aaa;
 +
box-sizing: border-box;
 +
padding: 10px;
 +
font-size: 88%;
 +
max-width: 100%;
 +
}
 +
.quotebox.floatleft {
 +
margin: 0.5em 1.4em 0.8em 0;
 +
}
 +
.quotebox.floatright {
 +
margin: 0.5em 0 0.8em 1.4em;
 +
}
 +
.quotebox.centered {
 +
margin: 0.5em auto 0.8em auto;
 +
}
 +
.quotebox.floatleft p,
 +
.quotebox.floatright p {
 +
font-style: inherit;
 +
}
 +
.quotebox-title {
 +
background-color: #F9F9F9;
 +
text-align: center;
 +
    font-size: larger;
 +
    font-weight: bold;
 +
}
 +
.quotebox-quote.quoted:before {
 +
    font-family:'Times New Roman',serif;
 +
    font-weight:bold;
 +
    font-size: large;
 +
    color: gray;
 +
    content: ' “ ';
 +
    vertical-align: -45%;
 +
line-height: 0;
 +
}
 +
.quotebox-quote.quoted:after {
 +
    font-family:'Times New Roman',serif;
 +
    font-weight:bold;
 +
    font-size: large;
 +
    color: gray;
 +
content: ' ” ';
 +
line-height: 0;
 +
}
 +
.quotebox .left-aligned {
 +
text-align: left;
 +
}
 +
.quotebox .right-aligned {
 +
text-align: right;
 +
}
 +
.quotebox .center-aligned {
 +
text-align: center;
 +
}
 +
.quotebox cite {
 +
display:block;
 +
font-style:normal;
 +
}
 +
 +
@media screen and (max-width:640px) {
 +
.quotebox {
 +
/*override inline styles */
 +
width: 100% !important;
 +
margin: 0 0 0.8em !important;
 +
float: none !important;
 +
}
 +
}
 +
 +
 +
 +
/* Character Infobox */
 +
aside.portable-infobox{
 +
  line-height: 1.25em;
 +
  width:320px;
 +
}
 +
 +
.pi-image-thumbnail{
 +
  max-width:100%;
 +
  width:100%;
 +
}
 +
 +
.pi-data-label{
 +
  flex-basis:45%;
 +
}
 +
 +
.pi-data-value{
 +
  flex-basis:55%;
 +
}
 +
 +
@media screen and (max-width: 720px){
 +
.pi-image-thumbnail{
 +
  max-width:100%;
 +
  width:100%;
 +
}
 +
 +
.pi-data-label{
 +
  flex-basis:45%;
 +
}
 +
 +
.pi-data-value{
 +
  flex-basis:55%;
 +
}
 +
}
 +
 +
/* Imported from Wikipedia for Message boxes */
 +
th.mbox-text, td.mbox-text {  /* The message body cell(s) */
 +
border: none;
 +
/* @noflip */
 +
padding: 0.25em 0.9em;    /* 0.9em left/right */
 +
width: 100%;              /* Make all mboxes the same width regardless of text length */
 +
}
 +
 +
td.mbox-image {                /* The left image cell */
 +
border: none;
 +
/* @noflip */
 +
padding: 2px 0 2px 0.9em;  /* 0.9em left, 0px right */
 +
text-align: center;
 +
}
 +
 +
td.mbox-imageright {          /* The right image cell */
 +
border: none;
 +
/* @noflip */
 +
padding: 2px 0.9em 2px 0;  /* 0px left, 0.9em right */
 +
text-align: center;
 +
}
 +
 +
td.mbox-empty-cell {          /* An empty narrow cell */
 +
border: none;
 +
padding: 0;
 +
width: 1px;
 +
}
 +
/* Article message box styles */
 +
table.ambox {
 +
margin: 0 10%;                  /* 10% = Will not overlap with other elements */
 +
border: 1px solid #a2a9b1;
 +
/* @noflip */
 +
border-left: 10px solid #36c;  /* Default "notice" blue */
 +
background-color: #fbfbfb;
 +
box-sizing: border-box;
 +
}
 +
 +
table.ambox + table.ambox {      /* Single border between stacked boxes. */
 +
margin-top: -1px;
 +
}
 +
 +
.ambox th.mbox-text,
 +
.ambox td.mbox-text {            /* The message body cell(s) */
 +
padding: 0.25em 0.5em;      /* 0.5em left/right */
 +
}
 +
 +
.ambox td.mbox-image {          /* The left image cell */
 +
/* @noflip */
 +
padding: 2px 0 2px 0.5em;    /* 0.5em left, 0px right */
 +
}
 +
 +
.ambox td.mbox-imageright {      /* The right image cell */
 +
/* @noflip */
 +
padding: 2px 0.5em 2px 0;    /* 0px left, 0.5em right */
 +
}
 +
 +
table.ambox-notice {
 +
/* @noflip */
 +
border-left: 10px solid #36c;      /* Blue */
 +
}
 +
 +
table.ambox-speedy {
 +
/* @noflip */
 +
border-left: 10px solid #b32424;    /* Red */
 +
background-color: #fee7e6;          /* Pink */
 +
}
 +
 +
table.ambox-delete {
 +
/* @noflip */
 +
border-left: 10px solid #b32424;    /* Red */
 +
}
 +
 +
table.ambox-content {
 +
/* @noflip */
 +
border-left: 10px solid #f28500;    /* Orange */
 +
}
 +
 +
table.ambox-style {
 +
/* @noflip */
 +
border-left: 10px solid #fc3;      /* Yellow */
 +
}
 +
 +
table.ambox-move {
 +
/* @noflip */
 +
border-left: 10px solid #9932cc;    /* Purple */
 +
}
 +
 +
table.ambox-protection {
 +
/* @noflip */
 +
border-left: 10px solid #a2a9b1;    /* Gray-gold */
 +
}
 +
 +
/* Image message box styles */
 +
table.imbox {
 +
margin: 4px 10%;
 +
border-collapse: collapse;
 +
border: 3px solid #36c;    /* Default "notice" blue */
 +
background-color: #fbfbfb;
 +
box-sizing: border-box;
 +
}
 +
 +
.imbox .mbox-text .imbox {  /* For imboxes inside imbox-text cells. */
 +
margin: 0 -0.5em;      /* 0.9 - 0.5 = 0.4em left/right.        */
 +
display: block;        /* Fix for webkit to force 100% width.  */
 +
}
 +
 +
.mbox-inside .imbox {      /* For imboxes inside other templates.  */
 +
margin: 4px;
 +
}
 +
 +
table.imbox-notice {
 +
border: 3px solid #36c;      /* Blue */
 +
}
 +
 +
table.imbox-speedy {
 +
border: 3px solid #b32424;    /* Red */
 +
background-color: #fee7e6;    /* Pink */
 +
}
 +
 +
table.imbox-delete {
 +
border: 3px solid #b32424;    /* Red */
 +
}
 +
 +
table.imbox-content {
 +
border: 3px solid #f28500;    /* Orange */
 +
}
 +
 +
table.imbox-style {
 +
border: 3px solid #fc3;      /* Yellow */
 +
}
 +
 +
table.imbox-move {
 +
border: 3px solid #9932cc;    /* Purple */
 +
}
 +
 +
table.imbox-protection {
 +
border: 3px solid #a2a9b1;    /* Gray-gold */
 +
}
 +
 +
table.imbox-license {
 +
border: 3px solid #88a;      /* Dark gray */
 +
background-color: #f7f8ff;    /* Light gray */
 +
}
 +
 +
table.imbox-featured {
 +
border: 3px solid #cba135;    /* Brown-gold */
 +
}
 +
 +
/* Category message box styles */
 +
table.cmbox {
 +
margin: 3px 10%;
 +
border-collapse: collapse;
 +
border: 1px solid #a2a9b1;
 +
background-color: #dfe8ff;    /* Default "notice" blue */
 +
box-sizing: border-box;
 +
}
 +
 +
table.cmbox-notice {
 +
background-color: #d8e8ff;    /* Blue */
 +
}
 +
 +
table.cmbox-speedy {
 +
margin-top: 4px;
 +
margin-bottom: 4px;
 +
border: 4px solid #b32424;    /* Red */
 +
background-color: #ffdbdb;    /* Pink */
 +
}
 +
 +
table.cmbox-delete {
 +
background-color: #ffdbdb;    /* Pink */
 +
}
 +
 +
table.cmbox-content {
 +
background-color: #ffe7ce;    /* Orange */
 +
}
 +
 +
table.cmbox-style {
 +
background-color: #fff9db;    /* Yellow */
 +
}
 +
 +
table.cmbox-move {
 +
background-color: #e4d8ff;    /* Purple */
 +
}
 +
 +
table.cmbox-protection {
 +
background-color: #efefe1;    /* Gray-gold */
 +
}
 +
 +
/* Other pages message box styles */
 +
table.ombox {
 +
margin: 4px 10%;
 +
border-collapse: collapse;
 +
border: 1px solid #a2a9b1;    /* Default "notice" gray */
 +
background-color: #f8f9fa;
 +
box-sizing: border-box;
 +
}
 +
 +
table.ombox-notice {
 +
border: 1px solid #a2a9b1;    /* Gray */
 +
}
 +
 +
table.ombox-speedy {
 +
border: 2px solid #b32424;    /* Red */
 +
background-color: #fee7e6;    /* Pink */
 +
}
 +
 +
table.ombox-delete {
 +
border: 2px solid #b32424;    /* Red */
 +
}
 +
 +
table.ombox-content {
 +
border: 1px solid #f28500;    /* Orange */
 +
}
 +
 +
table.ombox-style {
 +
border: 1px solid #fc3;      /* Yellow */
 +
}
 +
 +
table.ombox-move {
 +
border: 1px solid #9932cc;    /* Purple */
 +
}
 +
 +
table.ombox-protection {
 +
border: 2px solid #a2a9b1;    /* Gray-gold */
 +
}
 +
 +
/* Talk page message box styles */
 +
table.tmbox {
 +
margin: 4px 10%;
 +
border-collapse: collapse;
 +
border: 1px solid #c0c090;    /* Default "notice" gray-brown */
 +
background-color: #f8eaba;
 +
min-width: 80%;
 +
box-sizing: border-box;
 +
}
 +
 +
.tmbox.mbox-small {
 +
min-width: 0;                /* reset the min-width of tmbox above        */
 +
}
 +
 +
.mediawiki .mbox-inside .tmbox { /* For tmboxes inside other templates. The "mediawiki" class ensures that */
 +
margin: 2px 0;              /* this declaration overrides other styles (including mbox-small above)  */
 +
width: 100%;                /* For Safari and Opera */
 +
}
 +
 +
.mbox-inside .tmbox.mbox-small { /* "small" tmboxes should not be small when  */
 +
line-height: 1.5em;          /* also "nested", so reset styles that are  */
 +
font-size: 100%;            /* set in "mbox-small" above.                */
 +
}
 +
 +
table.tmbox-speedy {
 +
border: 2px solid #b32424;    /* Red */
 +
background-color: #fee7e6;    /* Pink */
 +
}
 +
 +
table.tmbox-delete {
 +
border: 2px solid #b32424;    /* Red */
 +
}
 +
 +
table.tmbox-content {
 +
border: 2px solid #f28500;    /* Orange */
 +
}
 +
 +
table.tmbox-style {
 +
border: 2px solid #fc3;      /* Yellow */
 +
}
 +
 +
table.tmbox-move {
 +
border: 2px solid #9932cc;    /* Purple */
 +
}
 +
 +
table.tmbox-protection,
 +
table.tmbox-notice {
 +
border: 1px solid #c0c090;    /* Gray-brown */
 +
}
 +
 +
/* Footer and header message box styles */
 +
table.fmbox {
 +
clear: both;
 +
margin: 0.2em 0;
 +
width: 100%;
 +
border: 1px solid #a2a9b1;
 +
background-color: #f8f9fa;    /* Default "system" gray */
 +
box-sizing: border-box;
 +
}
 +
 +
table.fmbox-system {
 +
background-color: #f8f9fa;
 +
}
 +
 +
table.fmbox-warning {
 +
border: 1px solid #bb7070;  /* Dark pink */
 +
background-color: #ffdbdb;  /* Pink */
 +
}
 +
 +
table.fmbox-editnotice {
 +
background-color: transparent;
 +
}
 +
 +
/* Div based "warning" style fmbox messages. */
 +
div.mw-warning-with-logexcerpt,
 +
div.mw-lag-warn-high,
 +
div.mw-cascadeprotectedwarning,
 +
div#mw-protect-cascadeon,
 +
div.titleblacklist-warning,
 +
div.locked-warning {
 +
clear: both;
 +
margin: 0.2em 0;
 +
border: 1px solid #bb7070;
 +
background-color: #ffdbdb;
 +
padding: 0.25em 0.9em;
 +
box-sizing: border-box;
 +
}
 +
 +
/* These mbox-small classes must be placed after all other
 +
  ambox/tmbox/ombox etc classes. "html body.mediawiki" is so
 +
  they override "table.ambox + table.ambox" above. */
 +
html body.mediawiki .mbox-small {  /* For the "small=yes" option. */
 +
/* @noflip */
 +
clear: right;
 +
/* @noflip */
 +
float: right;
 +
/* @noflip */
 +
margin: 4px 0 4px 1em;
 +
box-sizing: border-box;
 +
width: 238px;
 +
font-size: 88%;
 +
line-height: 1.25em;
 +
}
 +
 +
html body.mediawiki .mbox-small-left {  /* For the "small=left" option. */
 +
/* @noflip */
 +
margin: 4px 1em 4px 0;
 +
box-sizing: border-box;
 +
overflow: hidden;
 +
width: 238px;
 +
border-collapse: collapse;
 +
font-size: 88%;
 +
line-height: 1.25em;
 +
}
 +
 +
/* Style for compact ambox */
 +
/* Hide the images */
 +
.compact-ambox table .mbox-image,
 +
.compact-ambox table .mbox-imageright,
 +
.compact-ambox table .mbox-empty-cell {
 +
display: none;
 +
}
 +
 +
/* Remove borders, backgrounds, padding, etc. */
 +
.compact-ambox table.ambox {
 +
border: none;
 +
border-collapse: collapse;
 +
background-color: transparent;
 +
margin: 0 0 0 1.6em !important;
 +
padding: 0 !important;
 +
width: auto;
 +
display: block;
 +
}
 +
 +
body.mediawiki .compact-ambox table.mbox-small-left {
 +
font-size: 100%;
 +
width: auto;
 +
margin: 0;
 +
}
 +
 +
/* Style the text cell as a list item and remove its padding */
 +
.compact-ambox table .mbox-text {
 +
padding: 0 !important;
 +
margin: 0 !important;
 +
}
 +
 +
.compact-ambox table .mbox-text-span {
 +
display: list-item;
 +
line-height: 1.5em;
 +
list-style-type: square;
 +
list-style-image: url(/w/skins/MonoBook/resources/images/bullet.svg);
 +
}
 +
 +
/* Allow for hiding text in compact form */
 +
.compact-ambox .hide-when-compact {
 +
display: none;
 +
}
 +
 +
/* Text Age Coloration */
 +
@keyframes transition1 {
 +
  from {color: black;}
 +
  to {color: #efefef;}
 +
}
 +
@keyframes transition2 {
 +
  from {color: black;}
 +
  to {color: #d9d9d9;}
 +
}
 +
@keyframes transition3 {
 +
  from {color: black;}
 +
  to {color: #cccccc;}
 +
}
 +
@keyframes transition4 {
 +
  from {color: black;}
 +
  to {color: #b7b7b7;}
 +
}
 +
@keyframes transition5 {
 +
  from {color: black;}
 +
  to {color: #999999;}
 +
}
 +
@keyframes transition6 {
 +
  from {color: black;}
 +
  to {color: #666666;}
 +
}
 +
@keyframes transition7 {
 +
  from {color: black;}
 +
  to {color: #333333;}
 +
}
 +
 +
.cycle1{
 +
  color: #efefef;
 +
  animation-name: transition1;
 +
  animation-duration: 8s;
 +
  animation-delay: 0s;
 +
 +
}
 +
.cycle2{
 +
  color: #d9d9d9;
 +
  animation-name: transition2;
 +
  animation-duration: 8s;
 +
  animation-delay: 0s;
 +
 +
}
 +
.cycle3{
 +
  color: #cccccc;
 +
  animation-name: transition3;
 +
  animation-duration: 8s;
 +
  animation-delay: 0s;
 +
 +
}
 +
.cycle4{
 +
  color: #b7b7b7;
 +
  animation-name: transition4;
 +
  animation-duration: 8s;
 +
  animation-delay: 0s;
 +
 +
}
 +
.cycle5{
 +
  color: #999999;
 +
  animation-name: transition5;
 +
  animation-duration: 8s;
 +
  animation-delay: 0s;
 +
 +
}
 +
.cycle6{
 +
  color: #666666;
 +
  animation-name: transition6;
 +
  animation-duration: 5s;
 +
  animation-delay: 0s;
 +
 +
}
 +
.cycle7{
 +
  color: #333333;
 +
  animation-name: transition7;
 +
  animation-duration: 8s;
 +
  animation-delay: 0s;
 +
}
 +
.cycle8{
 +
        color: black;
 
}
 
}