From 41a99ba87e2e5789c2a33d7dc5f7d3d0c9871b8e Mon Sep 17 00:00:00 2001 From: yo momma Date: Sat, 31 Jan 2026 17:15:01 +0000 Subject: Refactor: extract remaining inline styles --- static/css/browser.css | 2 +- static/css/chat_down.css | 4 ++++ static/css/chat_wrapper.css | 10 ++++++++ static/css/fame.css | 9 ++++++++ static/css/fullscreen2.css | 5 ++++ static/css/fullscreen_base.css | 4 ++++ static/css/password_reset.css | 12 ++++++++++ static/css/reset.css | 49 ++++++++++++++++++++++++++++++++++++++++ static/css/rooms_vortex.css | 7 ++++++ template/browser.st | 4 ++-- template/fame2.st | 35 ++++++++++++++-------------- template/fullscreen2.st | 4 ++-- template/fullscreen4.st | 4 ++-- template/fullscreen5.st | 4 ++-- template/fullscreen_front.st | 2 +- template/fullscreenphotobooth.st | 4 ++-- template/ie_fullscreen.st | 2 +- template/mgmtfull.st | 4 ++-- template/reset.st | 11 +++++---- template/rooms/VIP.st | 8 +++---- template/rooms/artornot.st | 8 +++---- template/rooms/atrium.st | 2 +- template/rooms/butt.st | 2 +- template/rooms/chat.down.st | 8 +++---- template/rooms/chat.st | 2 +- template/rooms/dump2.st | 2 +- template/rooms/dumptest.st | 2 +- template/rooms/frontpage.st | 2 +- template/rooms/mgmt.st | 2 +- template/rooms/nocss.st | 2 +- template/rooms/vortex.st | 11 ++++----- 31 files changed, 164 insertions(+), 63 deletions(-) create mode 100644 static/css/fame.css create mode 100644 static/css/password_reset.css create mode 100644 static/css/reset.css diff --git a/static/css/browser.css b/static/css/browser.css index e0d6c19..124b79c 100755 --- a/static/css/browser.css +++ b/static/css/browser.css @@ -84,7 +84,7 @@ border:1px solid #f0e0d6; text-align:center; position:fixed; width:100%; - bottom:0px; + bottom:3px; line-height:3.1; font-size:11px; word-spacing:8px; diff --git a/static/css/chat_down.css b/static/css/chat_down.css index 155cc8d..75a6367 100644 --- a/static/css/chat_down.css +++ b/static/css/chat_down.css @@ -4,3 +4,7 @@ body{ background-image:url('https://i.imgur.com/JR7Ge.gif'); overflow:hidden; } + +.chat-down-image { + margin-top: 15%; +} diff --git a/static/css/chat_wrapper.css b/static/css/chat_wrapper.css index 6d9a832..c7989ca 100644 --- a/static/css/chat_wrapper.css +++ b/static/css/chat_wrapper.css @@ -17,3 +17,13 @@ left: 50% !important; margin-left: -250px !important; } + +#vipinfo { + position: absolute; + z-index: 100000; + right: 50px; + bottom: 125px; + background: #fff; + padding: 10px; + opacity: 0.75; +} diff --git a/static/css/fame.css b/static/css/fame.css new file mode 100644 index 0000000..cf969ab --- /dev/null +++ b/static/css/fame.css @@ -0,0 +1,9 @@ +.hall-of-fame-title { font-size: 150%; } + +.hall-of-fame-select { + font-size: 14px; + color: #000; + font-family: verdana, sans-serif; + background-color: #fff; + font-weight: bold; +} diff --git a/static/css/fullscreen2.css b/static/css/fullscreen2.css index dfd3436..77ced2d 100644 --- a/static/css/fullscreen2.css +++ b/static/css/fullscreen2.css @@ -40,3 +40,8 @@ body { #supersize .activeslide img { display: inline; } + +#supersize { + width: 1224px; + height: 918px; +} diff --git a/static/css/fullscreen_base.css b/static/css/fullscreen_base.css index 4543044..22aed3a 100644 --- a/static/css/fullscreen_base.css +++ b/static/css/fullscreen_base.css @@ -65,6 +65,10 @@ input { display: none; } +.rememberme-row { + font-size: 80%; +} + #forgetpw { position: absolute; left: 5px; diff --git a/static/css/password_reset.css b/static/css/password_reset.css new file mode 100644 index 0000000..7dc2171 --- /dev/null +++ b/static/css/password_reset.css @@ -0,0 +1,12 @@ +#content.reset-content { z-index: 77; } + +#passwordreset #feedback { + color: red; + margin-bottom: 2em; +} + +#passwordreset label { + display: block; + text-align: left; + margin-bottom: -8px; +} diff --git a/static/css/reset.css b/static/css/reset.css new file mode 100644 index 0000000..f1af743 --- /dev/null +++ b/static/css/reset.css @@ -0,0 +1,49 @@ +/* reset.css + From http://meyerweb.com/eric/tools/css/reset/ + v1.0 | 20080212 */ +* { + padding: 0; + margin: 0; +} + +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, font, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td { + margin: 0; + padding: 0; + border: 0; + outline: 0; + font-size: 100%; + vertical-align: baseline; + background: transparent; + font-family: Arial, Helvetica, sans-serif; +} + +body { line-height: 1; } + +ol, ul { list-style: none; } + +blockquote, q { quotes: none; } + +blockquote:before, blockquote:after, +q:before, q:after { + content: ''; + content: none; +} + +:focus { outline: 0; } + +ins { text-decoration: none; } + +del { text-decoration: line-through; } + +table { + border-collapse: collapse; + border-spacing: 0; +} diff --git a/static/css/rooms_vortex.css b/static/css/rooms_vortex.css index f13c797..7bb2754 100644 --- a/static/css/rooms_vortex.css +++ b/static/css/rooms_vortex.css @@ -94,3 +94,10 @@ text-decoration:none; height: 10px; background: #eee; } + +#likebutton iframe { + border: none; + overflow: hidden; + width: 170px; + height: 80px; +} diff --git a/template/browser.st b/template/browser.st index 79308e1..7a6a010 100755 --- a/template/browser.st +++ b/template/browser.st @@ -2,7 +2,7 @@ dump.fm | Image Search Beta $head()$ - + @@ -45,7 +45,7 @@ $endif$ -
+

$footer()$

diff --git a/template/fame2.st b/template/fame2.st index 00b99f8..58ec622 100755 --- a/template/fame2.st +++ b/template/fame2.st @@ -1,27 +1,28 @@ - - dump.fm hall of fame - $head()$ - - + + dump.fm hall of fame + $head()$ + + + $banner()$

- -
- -

Hall Of Fame



-
VIEW BY - + +
+ +

Hall Of Fame



+ VIEW BY +
diff --git a/template/fullscreen2.st b/template/fullscreen2.st index 1dfe6b8..e5c70f5 100755 --- a/template/fullscreen2.st +++ b/template/fullscreen2.st @@ -27,10 +27,10 @@ - + $messages: { m | -
+
$m.content$
diff --git a/template/fullscreen4.st b/template/fullscreen4.st index 1d1a4e6..d1ea427 100755 --- a/template/fullscreen4.st +++ b/template/fullscreen4.st @@ -14,7 +14,7 @@ } jQuery(startChatUpdater); - + @@ -34,7 +34,7 @@
password
--> -
remember me?
+
remember me?

diff --git a/template/fullscreen5.st b/template/fullscreen5.st index d0162d9..7181ff5 100755 --- a/template/fullscreen5.st +++ b/template/fullscreen5.st @@ -14,7 +14,7 @@ } jQuery(startChatUpdater); - + @@ -33,7 +33,7 @@
password
--> -
remember me?
+
remember me?

diff --git a/template/fullscreen_front.st b/template/fullscreen_front.st index 82b1403..b0bfb4d 100755 --- a/template/fullscreen_front.st +++ b/template/fullscreen_front.st @@ -14,7 +14,7 @@ } jQuery(startChatUpdater); - + diff --git a/template/fullscreenphotobooth.st b/template/fullscreenphotobooth.st index 6de7ca1..d6a1675 100755 --- a/template/fullscreenphotobooth.st +++ b/template/fullscreenphotobooth.st @@ -14,7 +14,7 @@ } jQuery(startChatUpdater); - + @@ -33,7 +33,7 @@
password
--> -
remember me?
+
remember me?

diff --git a/template/ie_fullscreen.st b/template/ie_fullscreen.st index 480037b..b5c448f 100755 --- a/template/ie_fullscreen.st +++ b/template/ie_fullscreen.st @@ -15,7 +15,7 @@ } jQuery(startChatUpdater); - + diff --git a/template/mgmtfull.st b/template/mgmtfull.st index 5ec3faa..26f7872 100755 --- a/template/mgmtfull.st +++ b/template/mgmtfull.st @@ -14,7 +14,7 @@ } jQuery(startChatUpdater); - + @@ -33,7 +33,7 @@
password
--> -
remember me?
+
remember me?

diff --git a/template/reset.st b/template/reset.st index 5fbfe65..4402239 100755 --- a/template/reset.st +++ b/template/reset.st @@ -3,6 +3,8 @@ dump.fm Password Reset $head()$ + + -
-
+
@@ -39,13 +40,13 @@
$if(valid_request)$ - +

Reset Your Password


- +
- +
diff --git a/template/rooms/VIP.st b/template/rooms/VIP.st index 64511da..a76427a 100755 --- a/template/rooms/VIP.st +++ b/template/rooms/VIP.st @@ -17,7 +17,7 @@ $head()$ - + $roomname$ dump.fm @@ -98,9 +98,9 @@ $footer()$
$preload()$ -
-

Welcome to the cool club

-
    +
    +

    Welcome to the cool club

    +
    • Rooms
    • New Users
    • Last seen users
    • diff --git a/template/rooms/artornot.st b/template/rooms/artornot.st index 180ff85..b5b77b3 100755 --- a/template/rooms/artornot.st +++ b/template/rooms/artornot.st @@ -17,7 +17,7 @@ $head()$ - + $roomname$ dump.fm @@ -98,8 +98,8 @@ $footer()$
    $preload()$ - + diff --git a/template/rooms/atrium.st b/template/rooms/atrium.st index 1464398..8a94dcb 100755 --- a/template/rooms/atrium.st +++ b/template/rooms/atrium.st @@ -17,7 +17,7 @@ $head_edge()$ - + $roomname$ dump.fm diff --git a/template/rooms/butt.st b/template/rooms/butt.st index 317483e..6c80511 100755 --- a/template/rooms/butt.st +++ b/template/rooms/butt.st @@ -6,7 +6,7 @@ - + $if(!user_nick)$ diff --git a/template/rooms/chat.down.st b/template/rooms/chat.down.st index 93d106f..7ad9a2a 100755 --- a/template/rooms/chat.down.st +++ b/template/rooms/chat.down.st @@ -18,13 +18,13 @@ dump.fm - +
    - -
    - + + + diff --git a/template/rooms/chat.st b/template/rooms/chat.st index 38a2ee2..7d5ae38 100755 --- a/template/rooms/chat.st +++ b/template/rooms/chat.st @@ -17,7 +17,7 @@ $head()$ - + $roomname$ dump.fm diff --git a/template/rooms/dump2.st b/template/rooms/dump2.st index a4140af..fca994f 100755 --- a/template/rooms/dump2.st +++ b/template/rooms/dump2.st @@ -17,7 +17,7 @@ $head()$ - + no $roomname$ dump.fm diff --git a/template/rooms/dumptest.st b/template/rooms/dumptest.st index 6ab53c2..b20b189 100755 --- a/template/rooms/dumptest.st +++ b/template/rooms/dumptest.st @@ -18,7 +18,7 @@ _____ ___ ___ ___ ___ ___ $if(user_nick)$ $head()$ - + $roomname$ dump.fm diff --git a/template/rooms/frontpage.st b/template/rooms/frontpage.st index 606d51f..a3c8957 100755 --- a/template/rooms/frontpage.st +++ b/template/rooms/frontpage.st @@ -17,7 +17,7 @@ $head()$ - + $roomname$ dump.fm diff --git a/template/rooms/mgmt.st b/template/rooms/mgmt.st index f88ec54..098784d 100755 --- a/template/rooms/mgmt.st +++ b/template/rooms/mgmt.st @@ -23,7 +23,7 @@ - + $if(isadmin)$ diff --git a/template/rooms/nocss.st b/template/rooms/nocss.st index cd08097..d38f57a 100755 --- a/template/rooms/nocss.st +++ b/template/rooms/nocss.st @@ -24,7 +24,7 @@ - + $if(!user_nick)$ diff --git a/template/rooms/vortex.st b/template/rooms/vortex.st index 128795e..1db0aa9 100755 --- a/template/rooms/vortex.st +++ b/template/rooms/vortex.st @@ -2,7 +2,7 @@ dump.fm image vortex - + @@ -192,11 +192,10 @@ $messages: { m | }$
    dump.fm image vortex

    Real-Time Visualization of whats being dumped now.

    Return Home

    -
    - -
    +
    + +
    -- cgit v1.2.3-70-g09d2