The "Create your own CSS" CSS in Off Topic
|
|
body { background-color: #93B4E2;
background-image: none;
background-position: center center;
background-attachment: fixed;
background-repeat: no-repeat; }
a { color: #E5FB00 !important; }
.page_header .title, .page_header .subtitle { color: #E5FB00 !important; }
.box, .big_box, .post, .comment, .title, p, #forum_data, .favorite_game { color: #05316D !important; }
.box, .big_box, .post, .comment, #content .title, #forum_data, .favorite_game { background: #6996D3 !important;
border-radius: 0px !important; }
.box, .big_box, .post, #center #comments_box, #forum_data, .favorite_game { border: 3px solid #284C7E !important; }
input[type=text], textarea { background: #0F4FA8 !important;
color: #000000 !important;
border: 1px solid #6996D3 !important; }
input[type=button], input[type=submit] { background: #0F4FA8 !important;
color: #93B4E2 !important;
border: 2px outset #6996D3 !important; }
.style1, .style2 { background: #4380D3 !important;
color: #000000 !important; }
.style3 { background: #6996D3 !important; color: #000000 !important; }
#tab_content {background: transparent !important;} #fan_content {margin-top: 40px !important;} .title {margin-left: 10px !important;margin-right: 10px !important;}
|
Here's a basic style sheet that will allow you to control the style across your page. Simply fill in the values with what you want (those without clear values are commented with the list of possible choices).
Currently, you can configure:
- Your page background color and/or image
- The color of all links
- The page title color
- The text color, background color, and border of all boxes
- The background color, text color, and border of input boxes and buttons
- The text color and background color and forum posts
As you can see from my site (at the time of this writing), the design is very simple.
If you have any questions or requests for additions, feel free to post in the comments.
You can do a quick google search for good color schemes (I used this site's color scheme designer).
|