/* 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 
// narsinha webring managed on behalf of the jenna moran fanclub chat by karma chameleon */

/* === 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 */

#jmfc-webring {
  margin: 0 auto;
  padding: 15px; /* creates some space around the widget */
}

#jmfc-webring table {
  background-color: #666777;
  margin: 0 auto; /* centers the widget */
  padding: 10px 0;
  border: LightSlateGray 4px outset;
  background-image: radial-gradient(rgba(0,0,0,1) 10%, rgba(255,255,255,1) 85%);
}

#jmfc-webring table tr td {
  padding: 15px; /* creates some space between the links and text inside the widget */
}


#jmfc-webring .webring-prev {
  text-align:right;
}

#jmfc-webring .webring-info {
   text-align:center;
   color: #505050;
   border: #44AACA 4px solid;
   border-radius: 47%;
   font-style: italic;
  background-color: #FFFFFF;
}


@media screen and (max-width: 600px) {
    #jmfc-webring .webring-info {
        font-size:small;
    }
}

#jmfc-webring .webring-next {
  text-align:left;
}

#jmfc-webring .webring-links {
  font-size:small;
  font-style: normal;
}

#jmfc-webring a:link{
    color: #307EAB;
}
#jmfc-webring a:visited{
    color: #661199;
}
#jmfc-webring a:hover{
    color: #44AACA;
}
#jmfc-webring a:active{
    color: #AA83EC;
}
#jmfc-webring .webring_stars{
    color: #FFFFFF;
}

