/* 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 (for the WIMSE webring)=== */

/* customize the entire widget (size or sth) */
#mbr {
  margin: 0 auto;
 margin-top: 70px;
  padding: 15px; /* creates some space around the widget */
  display: flex;
flex-direction: column; /* creates some space around the widget */
width: 200px; height: 100px;
position: relative;
}


/* customize the previous arrow */

#mbr .webring-prev {
  text-align:right;
  text-decoration: none;
}


/* customize the next arrow */
#mbr .webring-next {
  text-align:left;
  text-decoration: none;
}

/* customize the texts in the middle */
#mbr .webring-links {
    display: flex;
flex-direction: row;
align-items: center;
	justify-content: center;
    width: 100%;
  text-align: center;
  
}

#mbr-container  { display: flex;
flex-direction: column;
align-items: center;
	justify-content: center;
	width: 200px;
	height: 200px;
position: relative; /* this shouldnt be changed so that the box opens without affecting surrounding divs */
}


#the-tin {
    position: absolute; /* this shouldnt be changed so that the box opens without affecting surrounding divs */
width: 100%; bottom: 0;}
