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

#html-energy-webring {
    background-color: #ffffff;
    margin: 0 auto;
    padding: 10px; /* creates some space around the widget */
    border-radius: 20px;
    box-shadow: 0px 0px 197px -36px rgba(6, 241, 3, 0.93);
    -webkit-box-shadow: 0px 0px 197px -36px rgba(6, 241, 3, 0.93);
    -moz-box-shadow: 0px 0px 197px -36px rgba(6, 241, 3, 0.93);
    border: 3px dotted #000000;
}

#html-energy-webring table {
    background-color: #ffffff; /* makes the background pure white */
    margin: 0 auto; /* centers the widget */
    
}

#html-energy-webring table tr td {
    padding: 10px; /* creates some space between the links and text inside the widget */
}

#html-energy-webring .webring-prev {
    text-align: right;
}

#html-energy-webring .webring-info {
    text-align: center;
    padding: 0;
}

#html-energy-webring .webring-info p {
    margin: 0;
    margin-top: 10px;
}

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

#html-energy-webring .webring-next,
#html-energy-webring .webring-prev {
    font-size: 30px;
    color: #000000;
    margin: 20px 0;
    text-shadow: 0 0 10px #06f103;
    padding: 0;
}

#html-energy-webring .webring-next a,
#html-energy-webring .webring-prev a {
    text-decoration: none;
    color: #06f103;
}

#html-energy-webring .webring-links {
    font-size: small;
}

#html-energy-webring .webring-name {
    font-weight: bold;
    color: #000000;
    text-shadow: 2px 2px 4px #06f103;
    padding: 0;
    margin: 0 !important;
    margin-bottom: 10px;
}

#html-energy-webring .webring-name span {
    font-weight: normal;
    text-shadow: none;
}
