/* 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 */
:root {
    --widget-font-color: black;
    --widget-main-font: 'X Typewriter', 'serif';
}

@font-face {
    font-family: "X Typewriter";
    src:
        url('ressources/XTypewriter-Regular.ttf'),
        url('https://plut0gif.neocities.org/webring/ressources/XTypewriter-Regular.ttf');
}

#webringid {
    background-color: white;
    background-image: url('https://plut0gif.neocities.org/webring/ressources/texture.png');
    margin: 10px auto;
    padding: 10px;
    width: 220px;
    font-family: 'X Typewriter';
    border-radius: 3px;
    box-shadow: inset 3px 1px 10px grey;

}

#webringid table {
    margin: 0 auto;
    /* centers the widget */
}

#webringid table tr td {
    padding: 0;
    /* creates some space between the links and text inside the widget */
}

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

#webringid .webring-info {
    text-align: center;
    transform: rotate(5deg)
}

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

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


