/* 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 #webringid 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 */

/* === ONIONRING.CSS (DIV VERSION) === */

@font-face {
  font-family: 'rainy';
  src: url(https://files.catbox.moe/4o72io.woff2);
}

#apple-webring {
  gap: 10px;
  margin: 0; 
  padding: 0; 
}

.webring {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px; 
  width: 150px;
}

.webring-row {
  display: flex;
  gap: 10px; 
  align-items: center;
}
/* Left / Center / Right sections */
#apple-webring .webring-prev {
  text-align: right;
}

#apple-webring .webring-info {
  text-align: center;
  flex: 1; 
  font-family: 'rainy', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 5px; 
}

#apple-webring .webring-next {
  text-align: left;
}

/* Links inside info */
#apple-webring .webring-links {
  font-size: small;
}

/* Image */
#apple-webring .webring-img {
  width: 50px;
}

.arrow {
  width: 15px;
}

.random {
  font-family: 'rainy', sans-serif;
  
}

a {
  color: inherit; 
}

.non-member-msg {
  font-size: 13px;
  max-width: 100px;
  text-align: center;
  font-family: 'rainy';
}