/*wikitable by @limegreen on neocities. credit is appreciated!*/

/*example styles*/

/*to change the fonts here, go to google fonts, find ones you'd like, and use the @import snippet*/
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700');

@font-face {
font-family: 'mbytepc';
src: url(https://dl.dropbox.com/s/wu14gtbffx3auk3/Px437_MBytePC230_EGA%5B1%5D.ttf);
}

body{
  background-image:  linear-gradient(#7053d0 1px, transparent 1px), linear-gradient(to right, #7053d0 1px, #c3bcfa 1px);
   background-size: 20px 20px;
            background-repeat: repeat;
            background-position: 0 0;
            background-attachment: fixed;
  font-family:mbytepc;
  font-size: 15.5px;
  margin: 0;
  color: #2f215b;
}
/*container*/
.wrapper{ 
 min-height: 100vh;
 margin: auto;
 /*width of the content*/
 width: 85%;
 margin: auto;
 border:2px solid #454545;
 margin-top: 15px;
 margin-bottom: 15px;
}
/*main content*/
main{
 padding: 15px;
 background-color:#e1d8f7; 
 min-height: 100vh;
   clear: left;
}
/*links*/
a{
            text-decoration: none;
            color:#ada7ff;
            transition:0.3s;
            text-shadow: -1px 0 #2c2a4a, 0 1px #2c2a4a, 1px 0 #c2a4a, 0 -1px #c2a4a;
        }
/*link hover*/
a:hover{
            cursor:help;
            transition:0.3s;
            color:#9163cb;
            text-shadow: -1px 0 #f6d695, 0 1px #f6d695, 1px 0 #f6d695, 0 -1px #f6d695;
            display: inline-block; 
        }
/*breadcrumbs*/
.breadcrumb{
color: #2f215b;  
}
header{
  height: 100px;
  border-bottom:2px solid #454545;
  background:#fbe4ff;
}
/*prevent image overflow*/
main img{
  max-width: 100%;
}
/*footer*/
footer{
  background:#fbe4ff;
  padding: 35px;
  border-top:2px solid #454545;
  text-align: center;
}

/*headers*/
h1{
border-bottom: 2px solid;  
}
h2{
font-size: 19pt; 
border-bottom: 2px solid;  
}
h3{
font-size: 16pt; 
border-bottom: 2px solid;  
}
/*table of contents*/
.showcontent{
  padding: 3px;
  font-weight: bold;
}
.contents{
 background-color:#b8c0ff;
  width: 14%;
 padding: 7px;
 border: 2px solid;
}
/*this changes the dropdown to a hamburger menu for desktop screens*/
.toc summary {
    list-style-type: 'â˜° ';
}
.toc ul{
 list-style: none;
  margin-left: -30px;
}


/*quotes*/
.quotebox{
  width: 30%;
  background-size: cover;
  font-style: italic; 
  padding: 10px; 
  border-left: 3px;
 padding: 13px;
  border-left: solid;
  background-color: #e7c6ff;
}

/*series of*/
.revealsummary{
  text-align: center;
 background-color:#cdb4db;
  padding: 10px;
 font-weight: bold;
  border: 2px solid;
}
.reveal{
  text-align: center;
 background-color:#cdb4db;
  padding: 5px;
  width: 50%;
  border: 2px solid;

}

/*flair*/
 #flair::before {
  background-size: cover;
  background-size: 25px 25px;
  display: inline-block;
  width: 30px; 
  height: 20px;
  margin-left: 4px;
  content:"";
}

/*flair with image- delete above if using. you will need to play with the width and height to make it fit properly*/

/*  #flair::before { background-image: url('https://i.ibb.co/SwkXQjP/itsalime.png');
  background-size: cover;
  background-size: 20px 25px;
  display: inline-block;
  width: 20px; 
  height: 20px;
  margin-left: 4px;
  content:" ";
}*/

/*infotable*/
.infotable {
  float:right;
  margin-left:5px;
  /*you'll need a background color, a transparent box will show the header dividers*/
  background:#eaecf0;
  border-left:2px solid #454545;
  border:2px solid #454545;
  width:20%;
  font-size: 14px;
  color: #636363;
}
.infotable img{
  max-width: 100%;
}
.infotable th {
  text-align:left;
 
}
.infotable th{
   border-top: 1px solid grey;
   border-right: 1px solid grey;
  color: black;
}
.infotable td{

}
.infotable ul{
  list-style: none;
  margin-left: -15px;
}
#centertext{
  text-align: center;
}
/*clear float after infobox*/
#clear::after {
  content: "";
  clear: both;
  display: table;
}
/*responsiveness*/

/*narrow*/
@media(max-width: 900px) {
  .infotable{
    width: 30%;
  }
    .wrapper{
    width: 100%;
  }
      .chapters{
    width: 50%;
  }
  .reveal{
    width: 60%;
  }
  }  
/*medium*/
@media(max-width: 1250px) {
  .infotable{
    width: 35%;
  }
   .contents{
    width: 40%;
  }
  }  

/*mobile */
@media(orientation: portrait) {
  .quotebox{
    width: 90%;
    margin: auto;
    padding: 15px;
    margin-top: 10px;
  }
  body{
    margin-top: 0px;
  }
   .infotable{
    width: 100%;
     margin-bottom: 20px;
  }
 
  .wrapper{
    width: 95%;
  }
    .chapters{
    width: 50%;
  }
  .main{
    padding-top: 20px;
  }
  .contents{
    width: 95%;
  }
   .reveal{
    width: 95%;
  }
}