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

188 lines
4.1 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 03:28:08 +00:00
SECTION>.blockbody {
2010-04-20 01:24:36 +00:00
background: #DDD;
border: 1px solid #CCC;
}
2012-03-12 03:28:08 +00:00
SECTION>.blockbody, H1, SECTION>H3, FOOTER{
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;
}
2012-03-11 16:18:37 +00:00
ARTICLE SELECT {width: 150px;}
2012-02-12 12:00:19 +00:00
INPUT, TEXTAREA {box-sizing: border-box;}
TD>INPUT[type="button"] {width: 100%;}
2009-07-06 11:31:40 +00:00
TD>INPUT[type="submit"] {width: 100%;}
TD>INPUT[type="text"] {width: 100%;}
TD>INPUT[type="password"] {width: 100%;}
2009-09-27 11:34:58 +00:00
TD>TEXTAREA {width: 100%;}
2009-07-06 11:31:40 +00:00
TD>SELECT {width: 100%;}
2009-10-09 11:07:13 +00:00
[onclick] {cursor:pointer;}
2009-07-06 11:31:40 +00:00
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-12 02:17:38 +00:00
TABLE.form TD, TABLE.form TH {vertical-align: middle;}
2012-03-11 15:49:37 +00:00
TABLE.form TBODY TD {text-align: left;}
TABLE.form TBODY TH {text-align: right; padding-right: 4px;}
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
}
*[onclick] {cursor: pointer;}
IMG {border: none;}
FORM {margin: 0px;}
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: ")";
}
.paginator {
clear: both;
padding: 4px;
margin-bottom: 32px;
}
.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;
2012-03-12 03:28:08 +00:00
margin: 8px;
}
.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 */
}
#Imagesmain .blockbody {
background: none;
border: none;
box-shadow: none;
2009-07-06 11:31:40 +00:00
}