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/default/style.css

199 lines
4.2 KiB
CSS
Raw Normal View History

2009-07-06 11:31:40 +00:00
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2010-04-20 01:24:36 +00:00
* things common to all pages *
2009-07-06 11:31:40 +00:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
BODY {
background: #EEE;
2009-08-24 00:56:04 +00:00
font-family: sans-serif;
2009-07-06 11:31:40 +00:00
font-size: 14px;
margin: 0px;
}
H1 {
background: #BBB;
text-align: center;
2010-04-20 01:24:36 +00:00
border: 1px solid #AAA;
2009-07-06 11:31:40 +00:00
}
H1 A {
color: black;
}
H3 {
text-align: center;
margin: 0px;
}
2012-03-12 02:45:39 +00:00
SECTION>H3 {
2010-04-20 01:24:36 +00:00
background: #CCC;
border: 1px solid #BBB;
}
2012-03-12 05:31:19 +00:00
SECTION>.blockbody, .comment, .setupblock {
2010-04-20 01:24:36 +00:00
background: #DDD;
border: 1px solid #CCC;
}
2012-03-12 05:31:19 +00:00
SECTION>.blockbody, H1, SECTION>H3, FOOTER, .comment, .setupblock {
2010-04-20 01:24:36 +00:00
margin: 8px;
padding: 8px;
2010-04-20 01:51:38 +00:00
border-radius: 12px; /* standard, webkit, opera */
-moz-border-radius: 12px; /* mozilla haven't committed yet */
box-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* standard, opera */
-webkit-box-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* webkit haven't committed yet */
-moz-box-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* mozilla haven't committed yet */
2010-04-20 01:24:36 +00:00
}
2009-07-06 11:31:40 +00:00
THEAD {
font-weight: bold;
}
TD {
vertical-align: top;
text-align: center;
}
2009-08-24 02:57:18 +00:00
TABLE.zebra {border-spacing: 0px; border: 2px solid #CCC;}
2009-07-06 11:31:40 +00:00
TABLE.zebra TD, TABLE.zebra TH {vertical-align: middle; padding: 4px;}
TABLE.zebra THEAD TD, TABLE.zebra THEAD TH {border-bottom: 2px solid #CCC;}
TABLE.zebra TFOOT TD, TABLE.zebra TFOOT TH {border-top: 2px solid #CCC;}
2009-08-24 02:57:18 +00:00
TABLE.zebra TR TD {border-bottom: 1px solid #DDD;}
2012-02-22 14:27:56 +00:00
TABLE.zebra TR:nth-child(odd) {background: #EFEFEF;}
TABLE.zebra TR:nth-child(even) {background: #E0E0E0;}
2009-07-06 11:31:40 +00:00
2012-03-11 16:18:37 +00:00
FOOTER {
2009-07-06 11:31:40 +00:00
clear: both;
font-size: 0.7em;
text-align: center;
background: #BBB;
2010-04-20 01:24:36 +00:00
border: 1px solid #AAA;
2009-07-06 11:31:40 +00:00
}
A {text-decoration: none;}
A:hover {text-decoration: underline;}
UL {
text-align: left;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* the navigation bar, and all its blocks *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2012-03-11 16:18:37 +00:00
NAV {
2009-07-06 11:31:40 +00:00
width: 200px;
float: left;
text-align: center;
margin-left: 16px;
}
2012-03-11 16:18:37 +00:00
NAV .blockbody {
2009-07-06 11:31:40 +00:00
font-size: 0.85em;
text-align: center;
2010-04-20 01:24:36 +00:00
overflow: hidden;
2009-07-06 11:31:40 +00:00
}
2012-03-11 16:18:37 +00:00
NAV TABLE {
2012-03-12 02:17:38 +00:00
width: 100%;
2009-07-06 11:31:40 +00:00
}
2012-03-11 16:18:37 +00:00
NAV INPUT {
2009-07-06 11:31:40 +00:00
width: 100%;
padding: 0px;
}
2012-03-11 16:18:37 +00:00
NAV SELECT {
2009-07-06 11:31:40 +00:00
width: 100%;
padding: 0px;
}
.more:after {
content: " >>>";
}
.tag_count:before {
content: "(";
}
.tag_count:after {
content: ")";
}
2012-03-12 04:59:56 +00:00
#paginator .blockbody {
background: none;
border: none;
box-shadow: none;
2009-07-06 11:31:40 +00:00
}
.pools_next_img {
display: block;
font-size: 77%;
text-align: right;
}
2009-07-06 11:31:40 +00:00
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* the main part of each page *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2012-03-11 16:18:37 +00:00
ARTICLE {
2009-07-06 11:31:40 +00:00
margin-left: 226px;
margin-right: 16px;
2012-03-06 15:38:42 +00:00
margin-top: 16px;
2009-07-06 11:31:40 +00:00
text-align: center;
height: 1%;
}
2012-03-11 16:18:37 +00:00
ARTICLE TABLE {
2009-07-06 11:31:40 +00:00
width: 90%;
margin: auto;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* specific page types *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#pagelist {
margin-top: 32px;
}
2012-03-12 03:28:08 +00:00
.thumb {
width: 226px;
2009-07-06 11:31:40 +00:00
display: inline-block;
2012-03-12 03:06:14 +00:00
zoom: 1; /* ie6 */
*display: inline; /* ie6 */
2010-04-20 01:24:36 +00:00
text-align: center;
margin-bottom: 8px;
2012-03-12 03:28:08 +00:00
}
.thumb IMG {
border: 1px solid #CCC;
background: #DDD;
padding: 8px;
border-radius: 12px; /* standard, webkit, opera */
-moz-border-radius: 12px; /* mozilla haven't committed yet */
box-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* standard, opera */
-webkit-box-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* webkit haven't committed yet */
-moz-box-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* mozilla haven't committed yet */
}
.tagcategoryblock {
margin:0.6rem 1rem 0.6rem 0;
padding:0.5rem 0.6rem 0.7rem;
width:18rem;
border:1px solid #AAAAAA;
border-radius:0.25rem;
display:inline-block;
}
.tagcategoryblock table {
width:100%;
border-spacing:0;
}
.tagcategoryblock input, .tagcategoryblock span {
width:100%;
height:100%;
}
.tagcategoryblock td:first-child {
padding:0.3rem 0.7rem 0.4rem 0;
text-align:right;
width:40%;
}
.tagcategoryblock td:last-child {
width:60%;
}
.tagcategoryblock td:last-child span {
padding:0.24rem 0.7rem 0.5rem 0;
display:block;
}
.tagcategoryblock button {
width:100%;
margin-top:0.4rem;
padding:0.2rem 0.6rem;
}