/* This is a stylesheet for the Gallery. */

items {
  display: grid;
  max-width: 100%;
  margin-top: 8px;
}

div.item {
  max-height: 95vh;
  position: relative;
  display: table;
  right: 0;
  margin: 0 auto;

  & > a > span {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #222;
    color: white !important;
    padding: 2px 6px;
    opacity: 0;
    border-radius: 0px 0px 10px 0px;
    transition: 0.3s;
  }

  &:hover > a > span {
    opacity: 0.5;
    transition: 0.3s;
  }

  & > a > span > .date {
    font-size: 11px;
  }

  & > a > img {
    height: 100%;
    max-height: 95vh;
    max-width: 100%;
  }
}

h2.category-update,
h2.category-update-logs {
  filter: hue-rotate(45deg);
}

h2.category-news {
  filter: hue-rotate(180deg);

  ::after {
    color: #f22;
    font-size: 12px;
    padding-left: 8px;
    content: "News"
  }
}

h2.category-thoughts {
  ::after {
    color: #f22;
    font-size: 12px;
    padding-left: 8px;
    content: "Thoughts"
  }
}

.rss-colored-links a {
  color: orange !important;
  font-size: 16px;
}

.rss-colored-links a:hover {
  color: #ffbd44 !important;
}