Let’s face it, life isn’t worth living most days. What can you do about it? I’m afraid you can’t do much. It will cause you to try and escape from reality and then where will you be? Crushed without a place to go. Yeah, that’s the kind of consequences I’m talking about most of the time. So, why bother with it all? I’m not sure why I do most days. Wouldn’t it be easier to off myself? I mean who hasn’t thought about killing themselves from time to time? I know I have. It would be nice not to have these thoughts and feelings about my life. But I do have them and they won’t go away. So I must deal with them. There’s nothing wrong with that, I guess? Maybe there is. I don’t know for sure. So just allow it to be whatever it wants to be. If life wants me dead, who am I to argue with it? There’s so many things in this life that don’t matter. So many things in this life that do matter. I need to find a balance in between the two things and make it work out for me.
Here's a fun little css stylesheet that one can use for menus.
The CSS for the menu is:
#menu {
padding:0px;
width:120px;
}
#menu a {
text-decoration:none;
color:#000;
display:block;
border:1px solid #fff;
padding-left:3px;
}
#menu a:hover {
border:1px solid #000;
}
Which you can use with the following html:
<ul id="menu">
<li><a href="#">Link One</a></li>
<li><a href="#">Link Two</a></li>
<li><a href="#">Link Three</a></li>
</ul>
This will producde a simple menu that when hovered over will display a black box around the menu item.
Of course you can change the background color, or the font etc. to whatever you need it to be. Ah the simplicity that is CSS.
Comments
Post a Comment