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

181 lines
3.8 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;
2020-03-13 09:23:54 +00:00
margin: 0;
2009-07-06 11:31:40 +00:00
}
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;
2020-03-13 09:23:54 +00:00
margin: 0;
2009-07-06 11:31:40 +00:00
}
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;
}
2020-03-13 09:23:54 +00:00
TABLE.zebra {border-spacing: 0; 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%;
2020-03-13 09:23:54 +00:00
padding: 0;
2009-07-06 11:31:40 +00:00
}
2012-03-11 16:18:37 +00:00
NAV SELECT {
2009-07-06 11:31:40 +00:00
width: 100%;
2020-03-13 09:23:54 +00:00
padding: 0;
2009-07-06 11:31:40 +00:00
}
2016-09-06 07:18:36 +00:00
TABLE.tag_list {
border-collapse: collapse;
}
TABLE.tag_list>THEAD {
display: none;
}
TABLE.tag_list>TBODY>TR>TD {
display: inline;
padding: 0;
}
TABLE.tag_list>TBODY>TR>TD:after {
content: " ";
2016-09-06 07:18:36 +00:00
}
2009-07-06 11:31:40 +00:00
.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
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* 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 *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#short-wiki-description > .blockbody {
padding-bottom: 15px;
}
#short-wiki-description h2 {
margin: 0 0 0.4em;
}
2009-07-06 11:31:40 +00:00
#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 */
}
2015-03-21 00:18:09 +00:00