/* Add a home class for the home button on the top-bar navigation. */
.home {
  display: inline-block;
}

/* Remove the vertical bar next to the RSS button like the donate button does. */
.rss a {
  border-right: 0;
}

/* Don't hide top-nav and search box on mobile. */
@media screen and (max-width: 48em) {
  .md-display {
    display: unset;
  }
}
/* Don't show button backgrounds */
.copy-url-button {
  background-color: transparent;
  border: none;
}

/* Hide all elements by default */
.copy-url-button i {
  display: none;
}

/* Show off state */
.copy-url-button .copy-url-icon-off {
  display: inline-block;
}

/* Rollover effect */
.copy-url-button:hover .copy-url-icon-off {
  display: none;
}

.copy-url-button:hover .copy-url-icon-hover {
  display: inline-block;
}

/* Click effect */
.copy-url-button:active .copy-url-icon-off,
.copy-url-button:active .copy-url-icon-hover {
  display: none;
}

.copy-url-button:active .copy-url-icon-click {
  display: inline-block;
}

#search input:focus {
  border-color: #777777;
  outline: none;
}

.home i,
.about i,
.hashtags i,
.categories i,
.archive i,
.rss i,
.donate i {
  color: #333;
}

@media screen and (max-width: 48em) {
  .post-description {
    margin-top: 0px;
  }
}

/*# sourceMappingURL=custom.css.map */