/* ------------ ALBUMS PAGE ------------*/

#gallery_albums:before { content: 'art gallery';}

#gallery_albums {
  display: flex;
  flex-direction: column;
}

#albums_top, #nsfw_desc {
  display: flex;
  flex-direction: column;
}

.top_album, .middle_album, .bot_album,  .nsfw_album {
  outline: 2px solid;
  margin: 10px;
  transition: box-shadow 0.5s ease;
  background-size: cover;
}

.top_album, .middle_album, .bot_album {
  outline-color:  #8C84B2;
}

.top_album:hover, .middle_album:hover, .bot_album:hover {
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.8);
}

.top_album {
  width: 593px;
  height: 175px;
}

#albums_row, #albums_bottom, #nsfw {
  display: flex;
  flex-direction: row;
}

.middle_album {
  width: 191px;
  height: 175px;
}

.bot_album {
  width: 287px;
  height: 175px;
}

#nsfw {
  display: flex;
  align-items: center;
  height: 140px;
  margin-top: 10px;
}

#nsfw_desc {
  width: 397px;
  margin: 0 10px 0;
}

.nsfw_album {
  outline-color: #7A1530; 
  width: 177px;
  height: 80px;
  
}

.nsfw_album:hover {
  box-shadow: 0 0 30px rgba(204, 8, 45, 0.8);
}


/* BACKGROUNDS */

#featured { background-image: url('images/gal_featured.png'); }
#all { background-image: url('images/gal_all.png'); }
#ocs { background-image: url('images/gal_ocs.png'); }
#others { background-image: url('images/gal_others.png'); }
#fanart { background-image: url('images/gal_fanart.png'); }
#comics { background-image: url('images/gal_comics.png'); }
#diaries { background-image: url('images/gal_diaries.png'); }
.nsfw_album { background-image: url('images/gal_nsfw.png'); }




/* ------------ GALLERY LISTINGS ------------ */

#all_listing:before { content: 'all my art!  EVER???'; }


#all_listing {
  height: auto;
}

.gal_scroll {
  height: 842px;
  overflow-y: auto;
  padding-right: var(--main-padding);
  scrollbar-width: var(--scrollbar-width);
  scrollbar-color: var(--scrollbar-color);
  scrollbar-gutter: var(--scrollbar-gutter);
}

#tags_box {
  margin-bottom: 10px;
  padding: 10px;
  background-color: rgba(105, 99, 133, 0.5);
}

#category {
  margin: 0 0 5px;
}

.gal_tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-family: 'Inria Sans', sans-serif;
  font-size: 0.8rem;
}

.gal_tags a {
  color: white;
  padding: 5px;
  margin: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 1);
}

.gal_tags a:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.grid .permalink.title {
  font-family: 'Inria Sans', sans-serif;
  
}

.grid .taglist {
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 0.8rem;
  position: relative;
}

.grid .taglist:before {
  content: 'in ';
  color: white;
}

.grid .tag {
  display: inline-block;
  margin: 0 .125rem;
  padding: .125rem;
}

.grid .tag:not(:last-child) a:after {
  content: ',';
}

.grid.nomasonry {
  margin: 30px 0 30px;
  justify-content: center;
}

.search-form {
  line-height: 2rem;
}

.avoid-lab:before {
  content: "\A";
  white-space: pre;
}

.pagination {
  font-family: 'Inria Sans', sans-serif;
}
  
.pagination a {
  padding: 5px;
  margin: 2px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 1);
  background-color: rgba(49, 47, 62, 0.6);
}

.pagination a:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

/* .grid img {
    content: 
  } */




/* --- MOBILE --- */

@media (max-width: 400px) {
  
  .top_album {
    width: 346px;
    height: 101px;
  }
  
  #featured {
    margin: 0 0 5px;
  }
  
  #all {
    margin: 5px 0 5px;
  }
  
  .middle_album {
    width: 109px;
    height: 101px;
    margin: 5px 0 5px;
  }

  .bot_album {
    width: 170px;
    height: 101px;
    margin: 5px 0 0;
  }
  
  #ocs, #comics {
    margin-right: 10px;
  }
  
  #fanart {
    margin-left: 10px;
  }

  #nsfw {
    display: flex;
    align-items: center;
    height: 140px;
    margin-top: 5px;
  }

  #nsfw_desc {
    width: 346px;
    margin: 0 10px 0 0;
  }

  .nsfw_album {
    outline-color: #7A1530;
    width: 160px;
    height: 46px;
    margin: 0;
  }
  
  
  
  /* GRIDS */
  
  /* .grid .taglist a, .grid .taglist, .gal_tags a {
    font-size: 0.8rem;
  }     -    Not needed because the sizes are the same, but THESE are the classes you need to change them all! */

  
  .search-form input, .search-form label, .search-form results {
    width: 120px;
  }
  
  .avoid-lab:before {
    content: "";
  }
  

  
  

}
































