-
Notifications
You must be signed in to change notification settings - Fork 0
/
zaring.css
36 lines (28 loc) · 1.15 KB
/
zaring.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// zaring.js is made up of four files - zaring-widget.js, zaring-index.js (this one!), zaring-variables.js, and zaring.css
// it's based on onionring and 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-11-24
/* === ZAR-RING.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 */
#webringid {
margin: 0 auto;
padding: 15px; /* creates some space around the widget */
}
#webringid table {
background-color: #ffffff; /* makes the background pure white */
margin: 0 auto; /* centers the widget */
}
#webringid table tr td {
padding: 15px; /* creates some space between the links and text inside the widget */
}
#webringid .webring-prev {
text-align:right;
}
#webringid .webring-info {
text-align:center;
}
#webringid .webring-next {
text-align:left;
}
#webringid .webring-links {
font-size:small;
}