datawebring

A webring for data people who write
git clone https://git.eamoncaddigan.net/datawebring.git
Log | Files | Refs | README

commit 3796678c07d0dd3cc799dc48154dcf0f996f0145
parent ebfcff56b84d54b357d8ca5408886bd9d8406f1e
Author: Randy Au <randy.au@gmail.com>
Date:   Fri, 20 Sep 2024 12:32:57 -0400

Merge pull request #1 from randyau/ringID

Set RingID
Diffstat:
Monionring-variables.js | 2+-
Monionring.css | 14+++++++-------
2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/onionring-variables.js b/onionring-variables.js @@ -18,7 +18,7 @@ var ringName = 'Data People Webring'; /* the unique ID of the widget. two things to note: 1) make sure there are no spaces in it - use dashes or underscores if you must 2) remember to change 'webringid' in the widget code you give out and all instances of '#webringid' in the css file to match this value!*/ -var ringID = 'data-webring-dot-svm'; +var ringID = 'data-ring-dot-list'; //should the widget include a link to an index page? var useIndex = false; diff --git a/onionring.css b/onionring.css @@ -5,32 +5,32 @@ /* === 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 */ -#webringid { +#data-ring-dot-list { margin: 0 auto; padding: 15px; /* creates some space around the widget */ } -#webringid table { +#data-ring-dot-list table { background-color: #ffffff; /* makes the background pure white */ margin: 0 auto; /* centers the widget */ } -#webringid table tr td { +#data-ring-dot-list table tr td { padding: 15px; /* creates some space between the links and text inside the widget */ } -#webringid .webring-prev { +#data-ring-dot-list .webring-prev { text-align:right; } -#webringid .webring-info { +#data-ring-dot-list .webring-info { text-align:center; } -#webringid .webring-next { +#data-ring-dot-list .webring-next { text-align:left; } -#webringid .webring-links { +#data-ring-dot-list .webring-links { font-size:small; }