-
Posts
1,571 -
Joined
-
Last visited
-
Days Won
8
Content Type
Articles
Profiles
Forums
Events
Everything posted by Ramaniscence
-
This is a terrible, horrible thing to ask...[FFXI]
Ramaniscence replied to Demitri Omni's topic in General Discussion
2 guys I go to school with play FFXI obsessively, 1 of them plays way more than the other, though. They play on PC, PS2 and XBOX360. That's dedication right there It's funny because they talk about how great FFXI is, and how they'd never play WoW because "it sucks so bad." "Wait, so if you start out as a warrior, you have to be a warrior forever? THAT IS CRAP, MAN! See? That's why WoW sucks!" When really all I have to say is "How's that FFXI PvP?" and they'd be pretty owned. They also said it's "Too easy to level" in WoW. That getting level 75 in FFXI takes way long than getting 60 in WoW...and I don't see how that's a GOOD THING, but whateva. Whatever gets the job done for them. Hey, Edgar plays on Hades: -
Now someone needs to port it to XBOX.
-
Looks like DJP made some updates, anyway THAT is fixed, but... I have absolutely NO CLUE what's causing that. It doesn't happen for me and SHOUOLD'NT be happening at ALL. The banner is ONLY the background image for the BODY tag and the BODY tag online. In fact stuff in the INPUT boxes are styled something completely different. Since I'm not seeing it, it's gonna be pretty hard for me to get to the bottom of, but I've added a few things that MIGHT work. Edit: Looks like userStyles is broken right now, in the meantime manually update using this: http://ramaserv.thasauce.net/images/OCRCSS/OCR4-Contrast/vBulletin.css
-
Well, what I MEANT was the FORUMS looks OK as is, the rest of the site is completely unaltered. Which basically means as a legitamate forum theme it's OK. Of course it's best used with the maintheme as well. Also: I don't quite understand your question about the banner and the reply field. Got a screen?
-
Made a few more image replacements (topic icons and smileys best I can), I also made a few other code clean ups, most notable: -I changed the table background color from white to black for the FORUMs only. This means you no longer have to be running the main black theme for the forums theme to look right. -Found and eliminated the line that was making Stylish give the error message. Full list of changes can be found in the first post or the chang log in the style.
-
An OCR new year - Resolutions? (Happy New Years!)
Ramaniscence replied to Pi_R_Squared's topic in General Discussion
Beat me do it. -
Updatedthe style to include any image replacement that I could steal from PhpBB. This basically means all post icons except "threads you've posted in." I'll make new images for those asap. Update: ALL post icons now replaced. Apologies to anyone who doesn't like the NEW post images, I did my best. I'm trying to keep all the images with transparency as GIFs, and I'm not really The Coop so I'm not skilled with pixel art .
-
That's actually what I planned to do, but I entirely forgot that PhpBB was STILL THERE. Anyway code works as follows (Just using this as an example): img[src="/images/projects/album_blood_on_the_asphalt_125.jpg"] { background: url("http://ramaserv.thasauce.net/images/OCRCSS/OCR4-Contrast/RoFL.png") #000 top left no-repeat !important; width: 0 !important; height: 100px !important; padding-left: 100px !important; border: 1px solid #555 !important; } First line is the actual selector for the image. All images with the src of what. You can use "title" too if that's easier for you. Next is the background image (new image) and the location, background color yadda yadda. Width is ALWAYS equal to 0, padding-left is equal to the width of the new image, and height is equal to that of the new image. It doesn't so much REPLACE the image as it does "shove it out of the way" =P. Anyway I'm gonna do this probably later tonight, or tomorrow anyway. Yea, right now I loaded ALL the CSS that vB is running, and poke and prodded it where nessacary. Somewhere in the original code is something that Stylish doesn't like, so it drops it (I noticed in particular Stylish doesn't like how djp uses the background attribute) but this doesn't effect anything I've done. Please remember, this is just my INITIAL release of the style update, and they'll definitely be more within the next few days. Is true, but not ENTIRELY why I was done so fast. I pretty much did the code while djpretzel had vB turned OFF to back up the database. I just left a page open with the forum still on it =P. REALLY it went so quick because I had to edit almost none of style. The vB style is still in progress as it is and is pretty barebones. The whole edit can be broken down into just a few broad things: 1) Table Headers (black background stuff) 2) Sub headers (Grey background stuff) 3) TDs within table tboder (everything) JUST editting those 3 things style 75% of the board. Also SINCE the style is new I really can't pinpoint individual things that need editting because djp hasn't classed or ID'd them yet (besides QUOTES and CODE and a few other thigns this isn't so much a problem with MY style but there's a few elements in the original OCR style with no padding that really bug me ). This is very important. The styles are URL SPECIFIC. They WILL NOT work for OCREMIX.ORG only WWW.OCREMIX.ORG. I'd have to put ALL the code in there twice to make that work, and it really just seem redundant to me. Also: A lot of this wasn't mentioned in the first post because I figured most people already knew, apparently I'm gonna have to re-write it later anyway.
-
Below is the Mozilla Format CSS for import into Stylish: @-moz-document domain("ocremix.org") { @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;0,800;1,400;1,700&display=swap'); /* Dark Theme Colors */ :root { --color-primary: 231, 146, 97; --color-primary-variant: 230, 85, 2; --color-surface: 18, 18, 18, 1; --color-surface-ev-1: 255,255,255,0.05; --color-surface-ev-4: 255,255,255,0.09; --color-primary-on-surface: var(--color-primary), 0.12; --color-on-surface: 255,255,255,0.8; --color-on-surface-variant: 255,255,255,0.66; } /* transition css */ body { background: rgba(var(--color-surface)) !important; color: #aaa !important; font-family: Roboto, Arial, Helvetica, sans-serif; } .container-content { background-color: #121212; } .widget-content-shading-light, .widget-neutral { border-radius: 0; box-shadow: 0 1px 2px rgba(0,0,0,0.33); border-radius: 1em; background-color: rgba(var(--color-surface-ev-1)); } .widget-content-inner, .widget-neutral .widget-content { background-color: transparent } .widget-content-inner h3 { color: rgba(var(--color-on-surface-variant)) !important; } .widget-content-inner h2, .widget-content-inner h2 a { color: rgba(var(--color-on-surface-variant)) !important; font-weight: 500; font-size: 1.33em; } .widget-content-inner ul li { color: rgba(var(--color-on-surface)) !important; margin: 4px 0; font-size: 1.15em; } .col-border-right { border-right: solid 0px #111 !important; } .col-border-left { border-left: solid 0px #111 !important; } hr { border-top: solid 0px #111 !important; } ul.link-items li, div.list-item { background-color: transparent; border-bottom: 1px solid #222; } ul.link-items li:hover, div.list-item:hover { background: rgba(var(--color-surface-ev-1)); } span.color-bodytext a, span.color-bodytext a:link, span.color-bodytext a:visited, div.main-content a.color-bodytext { color: rgba(var(--color-on-surface-variant)) !important; } .color-additional, .color-additional a, .color-additional a:link, .color-additional a:visited, table.data .color-additional a, a.color-additional { color: rgba(var(--color-on-surface)); } .widget-header, .widget-neutral .widget-title { background-color: transparent !important; } .widget-arrangement .widget-content-shading-light { background: transparent; padding: 0; } .widget-arrangement .widget-title { background-color: transparent !important; } .widget-arrangement { background-color: rgba(var(--color-surface-ev-1)); border-radius: 4px; box-shadow: 0 1px 2px rgba(0,0,0,0.33); border-radius: 10px; } div.writeup, div.writeup p, div.writeup blockquote, div.writeup ul li { color: rgba(var(--color-on-surface)); font-size: 1.08em; } /* Forums */ /* Forums Theme Override */ :root { --box--backgroundColor:rgba(var(--color-surface-ev-1)); --theme-area_background_reset: var(--color-surface-ev-1); --theme-button_bar: var(--color-surface-ev-4); } #ipsLayout_body { background: #121212; } .ipsBreadcrumb > ul > li { color: rgba(var(--color-on-surface-variant)); } .ipsBreadcrumb > ul > li > a { color: rgba(var(--color-on-surface)); } .ipsType_pageTitle, .ipsType_sectionHead { color: rgba(var(--color-on-surface-variant)); } .ipsDataList.ipsDataList_zebra .ipsDataItem:not( .ipsDataItem_selected ):not( .ipsModerated ):not( .ipsDataItem_new ):not( .ipsDataItem_success ):not( .ipsDataItem_warning ):not( .ipsDataItem_error ):not( .ipsDataItem_info ):not( .ipsDataItem_status ):nth-child(even) { background: rgba(255,255,255,0.01); } .ipsWidget_title, .ipsType_sectionTitle { background-color: unset; border-bottom: unset; } .ipsDataItem { border-bottom: 1px solid #222; } .ipsWidget .ipsCalendarDate { background: rgba(var(--color-surface)); } .ipsType_sectionTitle { background-color: unset; } .ipsTabs_container { background: rgba(var(--color-primary-on-surface)); } .cTopicHovercard { /* background: var(--color-surface), var(--color-surface-ev-1); */ background: rgba(var(--color-surface)); } .ipsTabs_panel { /* this also should be dark gray */ } .ipsTabs_panels.ipsTabs_contained { background: #f00; /* This should be dark gray */ } #elPostFeed { background-color: rgba(var(--color-surface-ev-1)); } #elPostFeed article { border-radius: 10px; } .ipsQuote_citation, .ipsSpoiler_header { color: rgba(var(--color-on-surface)); } blockquote.ipsQuote, .ipsQuote_citation, .ipsSpoiler, .ipsSpoiler_header { background: rgba(var(--color-surface-ev-1)); } .ipsOutline { --outline-border-color: rgba(var(--color-surface-ev-1)); } .ipsPagination:not( .ipsPagination_mini ) a { color: rgba(var(--color-on-surface-variant)); } .ipsTags .ipsTag, .ipsTag_prefix { color: rgb(var(--color-primary)) !important; background-color: rgba(var(--color-primary), 0.05) !important; border: 1px solid rgba(var(--color-primary), 0.25); } .ipsTag:hover{ color: rgb(var(--color-primary-variant)) !important; } .ipsApp .cke_wysiwyg_frame, .ipsApp .cke_wysiwyg_div { color: rgb(var(--color-on-surface)); } } Known Issues: Many. This is a WIP Many more because the forum is currently under development. Legacy Information: Changelog: 2021-07-02 - Updated to Material Dark style for new forum theme. 2009-02-26 - Fixed SPOILERS tags 2009-02-25 - Fixed some issues with new user pages 2009-02-25 - Updated a few graphics 2007-06-11 - Fixed position of user info DIV 2007-06-11 - Fixed dates in changelog because I'mma tard 2007-01-02 - Updated a few replaced images. 2007-01-01 - Code clean-up to eliminate errors. 2007-01-01 - Image replacement for smileys 2007-01-01 - Editting the background colors so theme displays correctly WITHOUT main theme. 2007-01-01 - Alittle more image replacement 2006-12-31 - Added my own little something ❤️ 2006-12-31 - Added new post images not in PhpBB 2006-12-31 - Updated/added a few image replacemnts using images from PhpBB 2006-12-30 - Initial launch
-
I also like how 1 of the beaches is right in the middle of the Everglades.
-
I live in South Cuba right near the beach. And Central Cuba.
-
Whatdja Get!? (Christmas Gifts report in)
Ramaniscence replied to MasamuneX's topic in General Discussion
I'm going to MAGFest... ...oh and I got a water filter. Because water in Orlando sucks. -
Harry Potter and the Bridge of Hazardous Doom!
-
I get to the gold thing and it WILL NOT MOVE. And I'm pissed......,. Edit: I beat on my Keyboard and something magical happened! Needless to say I got it, but not before a gust a wind came in and someone wrote "PEEVES WUZ ERE" on the mirror o.O
-
Kid Thinks He's on a Mission from God
Ramaniscence replied to entropicdecay's topic in General Discussion
That's actually RIGHT by my apartment. They showed the video on the news. I thought it was kinda weird when the news anchor said "We've got some pretty cool video for you, this video was shot at the Almonte Springs mall of a teen trying to kill himself." ocrud. OCR people need to leave my Orlando ALONE D: -
MySpace can be done right, and it can be done very wrong, but every once and awhile it is done AMAZINGLY. My MySpace used to be like that, but everyone would bitch because "it never changed." AKA they couldn't see what comments other people left me AS IF it was any of their business anyway. Regardless...I'm working on a new, cleaner, profile now.
-
Myspace bulletins are a freakin joke. Your homepage shows the 5 most recent bulletins and more often than not, all 5 are stupidass surveys by the same girl. If it's not a survey, then it's usually something lame about how much they miss/love their boyfriend. I don't have a facebook account. Maybe I should look into that. The concept is nice, a "Share this with all your friends" thing, but the execution is HORRID. And you forgot the new spambot bulletins from people with hacked accounts saying "HEY CHECK OUT THESE CHEAP NEW WATCHES". ...people who suck at the internet make me cry. But yea, if people weren't so retarded with their MySpace's, MySpace wouldn't be so bad, but since they ARE Facebook is <3
-
I don't really mind the lack of formatting TOO much because I've seen how badly it can be abused on MySpace. I think Facebook does a lot of things right, though: -The Ads -The Feeds that you can choose to IGNORE certain people on -or- NOT send out certain information YOURSELF. Which leads into... -Shares+ are like what MySpace "bulletins" should be. Plus then you could COMPLETELY ignore the people who're posting random SHIT, and actually see what people who AREN'T fucktards are trying to share. etc etc Factor in the customizable Firefox toolbar and the Google Search, and Facebook is the only site of it's kind you'll ever need .
-
Log in and go to My Account -> Notifications. I always used a junk mail address that I never checked, but this sounds like a better plan. What I did with my GMail is: *Made my MySpace/Facebook e-mails go to EMAIL+MySpace@Gmail.com *Made a label called MySpace/Facebook *Made a Filter that filters ALL email SENT TO "EMAIL+MySpace@gmail.com" gets LABELLED MySpace/Facebook and SKIPS INBOX That way nothing shows up in my inbox, but when I have new MySpace/Facebook crap, I have alittle Label with "MySpace/Facebook (2)" in the corner. I do the same thing with forums and topic replies.
-
Post your Mii (making wallpaper, collecting...)
Ramaniscence replied to Jandalf's topic in General Discussion
My actual Mii looks even more like me, but that's the basic idea of it right there. -
SELL REZ TO ME AT A REASONABLE PRICE ((((((((((((((
-
Nope. I think it would be too much of a hassle to do something like that . Actually, a few people all rolled on Illidan, and me and Suzu still play there. Only problem is getting everyone on at the same time.
-
Rama! want to go to onixya with me or are you staying on illida/another server? I'm definitely staying on Illidan (because all my IRL friends, a lot of my online friends, and even soem of my relatives play there), but I'm not against rolling on another server, either. BUT I don't really wanna roll a new char now until the expansion comes out, because after watching the intro I'm DEFINITELY getting it.