brownstain

- friends
107 link karma
313 comment karma
send messageredditor for
what's this?

TROPHY CASE


  • One-Year Club

    Verified Email

My new laptop just tripled in value! by KidB91in pics

[–]brownstain 0 points1 point ago

sorry, this has been archived and can no longer be voted on

Well I'll be damned, you can look at my past submissions.

IAMA 16 year old who hitchhiked about 690 miles. by everlostpoetin IAmA

[–]brownstain 1 point2 points ago

sorry, this has been archived and can no longer be voted on

How long usually did it take to have your thumb sticking out before someone picked you up? Did you get into any trouble with the law?

My new laptop just tripled in value! by KidB91in pics

[–]brownstain -28 points-27 points ago

sorry, this has been archived and can no longer be voted on

No, seriously, who cares? What does OP gain from trying to take credit?

My new laptop just tripled in value! by KidB91in pics

[–]brownstain -41 points-40 points ago

sorry, this has been archived and can no longer be voted on

Who cares

Reddit, why do hate/love where you live? by [deleted]in AskReddit

[–]brownstain 0 points1 point ago

sorry, this has been archived and can no longer be voted on

I do not. However I am considering pursuing a degree in Computer Science.

Reddit, why do hate/love where you live? by [deleted]in AskReddit

[–]brownstain 0 points1 point ago

sorry, this has been archived and can no longer be voted on

No, that's perfectly feasible. I've done it before. It's just a pain in the neck since I'm 18 and I live with my parents. Going to college somewhere else in California in a month so it's all good.

Reddit, why do hate/love where you live? by [deleted]in AskReddit

[–]brownstain 1 point2 points ago

sorry, this has been archived and can no longer be voted on

Where in the Bay do you live?

What counts as a "view" on YouTube? Loading the page, watching the whole video, more than half the video? by Dax420in AskReddit

[–]brownstain -2 points-1 points ago

sorry, this has been archived and can no longer be voted on

So you really have no idea?

What counts as a "view" on YouTube? Loading the page, watching the whole video, more than half the video? by Dax420in AskReddit

[–]brownstain -2 points-1 points ago

sorry, this has been archived and can no longer be voted on

Source? Proof? What makes you an expert?

Found out my wife has been fucking my best friend. by treeslashtreesin AskReddit

[–]brownstain 0 points1 point ago

sorry, this has been archived and can no longer be voted on

To make the world a better place? And it's easier that way.

CSS by [deleted]in explainlikeimfive

[–]brownstain 1 point2 points ago*

sorry, this has been archived and can no longer be voted on

Okay, your question is extremely vague but I'm assuming you're talking about Cascading Style Sheets. I'm assuming you know at least a little bit about HTML.

Pretty much all CSS is designed to do is change the look and feel of a website. For example, body{ PUT CODE HERE! } would allow you to change properties of the entire document. There's a full list of properties you can manipulate here. For example, if I wanted to make the background black, All I would have to do is: body{ background-color: #000000; }

A color mixer can be found here.

Anyway, the idea is, you have it in this format: property: value; The property, then a colon, then it's value, followed by a semicolon. You can change more than one property too: body{ background-color: #000000; border-left: 100px; } Anyway, you can change a whole bunch of properties in a document. It isn't limited to the "body" part itself. For example, if you wanted to change the properties of a link you would use this code: a:link{ color:#FF0000; } a:hover{ color:#AA0000; text-decoration:underline; } The reason why I put "a" in front is because if you looked at the HTML source of a website, you'd notice the code for a link kinda looks like this. <a href="http://google.com">Display text</a> Display text

The <a> thing is called a tag. The : after the a is the state the tag is in. When the <a> tag is a link, then make it red. If it's hovered over, make it a darker red and make it underlined. Pretty simple. Here's another example. img{ border: 3px #000000 solid; } This makes all images have a 3 pixel solid black border around them.

Now that I've got the basics out of the way, let's go to the fun stuff.

A LOT of things in web pages are defined by classes. For example, in the reddit source itself, is this code: <div class="md"> <p> Can somebody, in layman's terms, explain to me how it works. I have all the CSS to change heaps of stuff, like how many readers in a sub, something instead of "readers", remove voting for comments and posts, that kind of thing. I have access to it all and I know what does what but all I do is copy and paste, I don't know how it works, or anything. I mean, I could copy and paste some CSS to change my name to "DrunkenJedi knows jack shite about CSS" but all I'd do is take existing CSS and add in my own little message, I'd be unable to write it myself. </p> <p>TL;DR Can somebody teach me how to write this shit? :P</p> <p>Please help.</p> </div>

Notice how at the top it says <div class="md">. If you wanted to manipulate JUST the text in that box this is what you would do: div .md{ font-family: courier new; color: #FF0000; } Notice the . before the md. That means to change the properties of a <div> with the "md" class. And what that would do is make the font of your submission in courier new and have the text be the color red.

There's also this other property called ID. Nearly the same shit. For example, if something had something like <span id="foo"> this is what you would do: span #foo{ //code here } The # before the foo means to look for tags with the ID "foo".

That's pretty much the basics of it. If you want to go more in depth with this stuff check out w3schools.

LI5: Why can't everyone just use a common currency? by grachasaurusin explainlikeimfive

[–]brownstain 11 points12 points ago*

sorry, this has been archived and can no longer be voted on

I always thought this explained that phenomenon nicely. Also, shitty countries have shitty currency. Imagine if the US and Greece used the same type of dollar. Greece went down the toilet, the value of the dollar would go down!

What thought do you have that you know is wrong but can't help but feel? by SNewbyin AskReddit

[–]brownstain 0 points1 point ago

sorry, this has been archived and can no longer be voted on

Straight up tell her this dude. It's not uncommon, these feelings will only intensify.

Troll wind was trolled. by zspadein fffffffuuuuuuuuuuuu

[–]brownstain 10 points11 points ago

sorry, this has been archived and can no longer be voted on

Wait, did this actually happen? And did she really use that line? If so,

Does it get better after high school? by brownstainin AskReddit

[–]brownstain 0 points1 point ago

sorry, this has been archived and can no longer be voted on

):

Does it get better after high school? by brownstainin AskReddit

[–]brownstain 0 points1 point ago

sorry, this has been archived and can no longer be voted on

Okay.

Does it get better after high school? by brownstainin AskReddit

[–]brownstain 0 points1 point ago

sorry, this has been archived and can no longer be voted on

How exactly does it get better?

Does it get better after high school? by brownstainin AskReddit

[–]brownstain 0 points1 point ago

sorry, this has been archived and can no longer be voted on

Wait, what?

What's the most horrible thing your family/friends have done to you in life? by Omnommersin AskReddit

[–]brownstain 0 points1 point ago

sorry, this has been archived and can no longer be voted on

Yeah, he did that shit with me too.

No place left to go but down... by givenup401in SuicideWatch

[–]brownstain 1 point2 points ago*

sorry, this has been archived and can no longer be voted on

I'm sorry, I shouldn't have said that. I'm not really good with words.

All I'm trying to say is that once you hit rock bottom, there's only one place to go, up.

Just do me one favor; go for a run. Do some sort of exercise before making a decision like this.

If you kill yourself, there's one path you take, being dead in the ground. If you don't, there is an endless number of possibilities that could happen in your life. You could meet a really great guy tomorrow, somehow land on a really well paying job. Who knows? It's your life. You have control of your own fate.

I'm 16, and I'd like to work towards a 6-pack. What should I do? by beethoven_freakin Fitness

[–]brownstain 7 points8 points ago

sorry, this has been archived and can no longer be voted on

Oh. I was talking out of my ass. I have no idea what you need to do.

Free Drink. by kellyflan2in reddit.com

[–]brownstain -1 points0 points ago

sorry, this has been archived and can no longer be voted on

Oh my god. I never knew what that handicap symbol was supposed to represent.

Until now.

Thank you.

911 Rage by klondykin fffffffuuuuuuuuuuuu

[–]brownstain 0 points1 point ago

sorry, this has been archived and can no longer be voted on

Dude, that's like the first thing you should think when someone states a letter after a street address.

view more: next