/* onionring.js is made up of four files - onionring-widget.js, onionring-index.js, onionring-variables.js and onionring.css (this one!)
// it's licensed under the cooperative non-violent license (CNPL) v4+ (https://thufie.lain.haus/NPL.html)
// it was originally made by joey + mord of allium (è’œ) house, last updated 2020-10-24 */

/* === ONIONRING.CSS === */
/* this file affects the style of the widget. remember to replace all instances of #onlinewire-webring with whatever value you have for ringID in the onionring-widget.js file. make sure it still has the # at the front, though! probably easiest to use find+replace to do it */

#onlinewire-webring {
  margin: 0px;
  text-align: center;
    padding: 0;
    font-size: 0;
}

#onlinewire-webring .webring-content {
  display: flex;
  align-items: center; /* Vertically center the elements */
  justify-content: center;
  gap: 10px; /* Add space between the prev, center, and next elements */
}

#onlinewire-webring .webring-prev img,
#onlinewire-webring .webring-next img {
  object-fit: contain;
  image-rendering: pixelated;
}

#onlinewire-webring .webring-info img {
  object-fit: contain;
  image-rendering: pixelated;
    height:60px;
}

#onlinewire-webring .webring-links {
  font-size: small;
  text-align: center;
}

#onlinewire-webring a {
  text-decoration: none;
  color: #8ace00;
}

#onlinewire-webring a:hover {
  text-decoration: underline;
}