Difference between revisions of "User:Smallpeoples343/SmallCSS"

(Created page with "This AoPS Wiki page will be used to record my CSS's that were developed by me and used on my blog.")
 
 
Line 1: Line 1:
 
This AoPS Wiki page will be used to record my CSS's that were developed by me and used on my blog.
 
This AoPS Wiki page will be used to record my CSS's that were developed by me and used on my blog.
 +
 +
==Google==
 +
<code>
 +
/*
 +
Google v.1.0
 +
Copyright: smallpeoples343 (2011)
 +
Original Template: Ice by abcak
 +
Please leave this here.
 +
*/
 +
 +
/* body and entries */
 +
body{
 +
background-image: url(http://www.marcgunther.com/wp-content/uploads/google.jpg) !important;
 +
background-repeat: repeat-y;
 +
background-position: center top;
 +
background-attachment: scroll;
 +
background-color: #616EE4;
 +
color: #000000;
 +
}
 +
#wrapper{
 +
background-image: none;
 +
background-color: transparent;
 +
border: none;
 +
width: 800px; 
 +
}
 +
#content{
 +
background-color: #FFFFFF;
 +
padding: 10px;
 +
}
 +
.entry{
 +
width: 500px;
 +
}
 +
div.entrywrap{
 +
border: none;
 +
background-color: #5CE62A;
 +
}
 +
.row1{
 +
background-color: #9C88FC;
 +
}
 +
.row2{
 +
background-color: #E9546D;
 +
}
 +
 +
/* nav-bar */
 +
#navigation_box{
 +
border: none;
 +
background-color: transparent;
 +
margin-bottom: none;
 +
}
 +
#left_navigation_box{
 +
font-size: 16px;
 +
}
 +
 +
/* header */
 +
#header{
 +
border: none;
 +
height: 200px;
 +
margin-top: 75px;
 +
background-color: transparent;
 +
 +
}
 +
#header h1{
 +
color: #404040 ;
 +
text-align: center-down !important;
 +
font-size: 24px;
 +
background-color: transparent;
 +
}
 +
/* side */
 +
#side{
 +
width: 200px;
 +
}
 +
fieldset{
 +
border: none;
 +
}
 +
li.row1{
 +
background-color: #E9546D;
 +
width: 165px;
 +
word-wrap: break-word;
 +
}
 +
li.row2{
 +
background-color: #488ADB;
 +
width: 165px;
 +
word-wrap: break-word;
 +
}
 +
 +
/* footer and various coloring */
 +
#footer{
 +
background-image: url(http://www.artofproblemsolving.com/Forum/download/file.php?id=32702) !important;
 +
background-repeat: repeat-y;
 +
background-position: right bottom;
 +
background-attachment: inherit;
 +
background-color: #bf0000;
 +
color: #000000;
 +
}
 +
div.quotetitle{
 +
border-top-color: #e6ffff;
 +
border-top-width: 1px;
 +
border-top-style: solid;
 +
padding: 5px;
 +
width: 90%;
 +
}
 +
div.quotecontent{
 +
border-bottom-color: #e6ffff;
 +
border-bottom-width: 1px;
 +
border-bottom-style: solid;
 +
padding: 5px;
 +
width: 90%;
 +
}
 +
div.codetitle{
 +
border-top-color: #e6ffff;
 +
border-top-width: 1px;
 +
border-top-style: solid;
 +
padding: 5px;
 +
width: 90%;
 +
}
 +
div.codecontent{
 +
border-bottom-color: #dbdbce;
 +
border-bottom-width: 1px;
 +
border-bottom-style: solid;
 +
padding: 5px;
 +
width: 90%;
 +
font-family: Courier New, Courier New;
 +
}
 +
div.codetitle, div.codecontent {
 +
background-color: #ebeadd;
 +
border-right-color: #dbdbce;
 +
border-right-width: 2px;
 +
border-right-style: solid;
 +
border-left-color: #dbdbce;
 +
border-left-width: 2px;
 +
border-left-style: solid;
 +
}
 +
a:link {color: #000000; text-decoration: none; important}
 +
a:visited {color: #D52417; text-decoration: none; !important}
 +
a:hover {color: #bf0000; text-decoration: underline; !important}
 +
 +
/* gets rid of the about owner */
 +
div#about-owner-widget{
 +
display: none;
 +
}
 +
</code>

Latest revision as of 18:14, 9 August 2011

This AoPS Wiki page will be used to record my CSS's that were developed by me and used on my blog.

Google

/* Google v.1.0 Copyright: smallpeoples343 (2011) Original Template: Ice by abcak Please leave this here.

  • /

/* body and entries */ body{ background-image: url(http://www.marcgunther.com/wp-content/uploads/google.jpg) !important; background-repeat: repeat-y; background-position: center top; background-attachment: scroll; background-color: #616EE4; color: #000000; }

  1. wrapper{

background-image: none; background-color: transparent; border: none; width: 800px; }

  1. content{

background-color: #FFFFFF; padding: 10px; } .entry{ width: 500px; } div.entrywrap{ border: none; background-color: #5CE62A; } .row1{ background-color: #9C88FC; } .row2{ background-color: #E9546D; }

/* nav-bar */

  1. navigation_box{

border: none; background-color: transparent; margin-bottom: none; }

  1. left_navigation_box{

font-size: 16px; }

/* header */

  1. header{

border: none; height: 200px; margin-top: 75px; background-color: transparent;

}

  1. header h1{

color: #404040 ; text-align: center-down !important; font-size: 24px; background-color: transparent; } /* side */

  1. side{

width: 200px; } fieldset{ border: none; } li.row1{ background-color: #E9546D; width: 165px; word-wrap: break-word; } li.row2{ background-color: #488ADB; width: 165px; word-wrap: break-word; }

/* footer and various coloring */

  1. footer{

background-image: url(http://www.artofproblemsolving.com/Forum/download/file.php?id=32702) !important; background-repeat: repeat-y; background-position: right bottom; background-attachment: inherit; background-color: #bf0000; color: #000000; } div.quotetitle{ border-top-color: #e6ffff; border-top-width: 1px; border-top-style: solid; padding: 5px; width: 90%; } div.quotecontent{ border-bottom-color: #e6ffff; border-bottom-width: 1px; border-bottom-style: solid; padding: 5px; width: 90%; } div.codetitle{ border-top-color: #e6ffff; border-top-width: 1px; border-top-style: solid; padding: 5px; width: 90%; } div.codecontent{ border-bottom-color: #dbdbce; border-bottom-width: 1px; border-bottom-style: solid; padding: 5px; width: 90%; font-family: Courier New, Courier New; } div.codetitle, div.codecontent { background-color: #ebeadd; border-right-color: #dbdbce; border-right-width: 2px; border-right-style: solid; border-left-color: #dbdbce; border-left-width: 2px; border-left-style: solid; } a:link {color: #000000; text-decoration: none; important} a:visited {color: #D52417; text-decoration: none; !important} a:hover {color: #bf0000; text-decoration: underline; !important}

/* gets rid of the about owner */ div#about-owner-widget{ display: none; }