This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/themes/warm/style.css

175 lines
3.4 KiB
CSS
Raw Normal View History

2009-07-23 01:32:45 +00:00
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2012-03-13 08:03:53 +00:00
* things common to all pages *
2009-07-23 01:32:45 +00:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
BODY {
background: url(bg.png);
font-family: "Arial", sans-serif;
font-size: 14px;
margin: 0px;
}
2012-03-11 16:18:37 +00:00
HEADER {
2009-07-23 01:32:45 +00:00
border-bottom: 1px solid #B89F7C;
margin-top: 0px;
margin-bottom: 16px;
padding: 8px;
background: #FCD9A9;
text-align: center;
}
H1 {
font-size: 5em;
margin: 0px;
padding: 0px;
}
H1 A {
color: black;
}
H3 {
text-align: center;
margin: 0px;
}
THEAD {
font-weight: bold;
}
TD {
vertical-align: top;
text-align: center;
}
CODE {
background: #DEDEDE;
font-size: 0.8em;
}
#subtitle {
width: 256px;
font-size: 0.75em;
margin: auto;
margin-top: -16px;
text-align: center;
border: 1px solid black;
border-top: none;
background: #DDD;
}
TABLE.zebra {border-spacing: 0px; border: 1px solid #B89F7C; }
TABLE.zebra TD, TABLE.zebra TH {vertical-align: middle; padding: 4px;}
TABLE.zebra THEAD TD, TABLE.zebra THEAD TH {border-bottom: 2px solid #B89F7C;}
TABLE.zebra TFOOT TD, TABLE.zebra TFOOT TH {border-top: 2px solid #B89F7C;}
TABLE.zebra TD {border-top: 1px solid #B89F7C;}
2012-02-22 14:27:56 +00:00
TABLE.zebra TR:nth-child(odd) {background: #FCD9A9;}
TABLE.zebra TR:nth-child(even) {background: #DABC92;}
2009-07-23 01:32:45 +00:00
2012-03-11 16:18:37 +00:00
FOOTER {
2009-07-23 01:32:45 +00:00
clear: both;
padding: 8px;
font-size: 0.7em;
text-align: center;
border-top: 1px solid #B89F7C;
background: #FCD9A9;
}
A {color: #665844; text-decoration: none; font-weight: bold;}
A:hover {color: #665844; text-decoration: underline;}
A:visited {color: #665844; text-decoration: none}
A:active {color: #665844; text-decoration: underline;}
BLOCKQUOTE {
border: 1px solid black;
padding: 8px;
background: #DDD;
}
UL {
text-align: left;
}
2012-05-12 09:10:58 +00:00
SECTION>H3, SECTION>.blockbody, .comment, .setupblock {margin: 8px; padding: 8px; border: 1px solid #B89F7C;}
SECTION>.blockbody, .comment, .setupblock {background: #FCD9A9;}
2012-03-12 05:31:19 +00:00
SECTION>H3 {background: #DABC92;}
2009-07-23 01:32:45 +00:00
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* the navigation bar, and all its blocks *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2012-03-11 16:18:37 +00:00
NAV {
2009-07-23 01:32:45 +00:00
width: 250px;
float: left;
text-align: center;
margin-left: 16px;
}
2012-03-11 16:18:37 +00:00
NAV .blockbody {
2009-07-23 01:32:45 +00:00
font-size: 0.85em;
text-align: center;
}
2012-03-11 16:18:37 +00:00
NAV TABLE {
2009-07-23 01:32:45 +00:00
width: 150px;
}
2012-03-11 16:18:37 +00:00
NAV TD {
2009-07-23 01:32:45 +00:00
vertical-align: middle;
}
2012-03-11 16:18:37 +00:00
NAV INPUT {
2009-07-23 01:32:45 +00:00
width: 100%;
padding: 0px;
}
2012-03-11 16:18:37 +00:00
NAV SELECT {
2009-07-23 01:32:45 +00:00
width: 100%;
padding: 0px;
}
.more:after {
content: " >>>";
}
.tag_count:before {
content: "(";
}
.tag_count:after {
content: ")";
}
2012-03-12 05:31:19 +00:00
#paginator .blockbody {
background: none;
border: none;
box-shadow: none;
2009-07-23 01:32:45 +00:00
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* the main part of each page *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2012-03-11 16:18:37 +00:00
ARTICLE {
2009-07-23 01:32:45 +00:00
margin-left: 276px;
margin-right: 16px;
text-align: center;
height: 1%;
}
2012-03-11 16:18:37 +00:00
ARTICLE TABLE {
2009-07-23 01:32:45 +00:00
width: 90%;
margin: auto;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* specific page types *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#pagelist {
margin-top: 32px;
}
.thumb {
2012-03-12 05:31:19 +00:00
width: 226px;
2009-07-23 01:32:45 +00:00
display: inline-block;
2012-03-12 05:31:19 +00:00
zoom: 1; /* ie6 */
*display: inline; /* ie6 */
2009-07-23 01:32:45 +00:00
text-align: center;
margin-bottom: 8px;
2012-03-12 05:31:19 +00:00
}
.thumb IMG {
border: 1px solid #B89F7C;
background: #FCD9A9;
padding: 8px;
2009-07-23 01:32:45 +00:00
}