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

336 lines
6.7 KiB
CSS
Raw Normal View History

/**
* Some style elements borrowed from the QWebIRC project
* http://qwebirc.org/
*/
:root {
2010-02-28 11:01:18 +00:00
font-family: sans-serif;
font-size: 14px;
}
BODY {
background: #F0F7FF;
2020-03-13 09:23:54 +00:00
margin: 0;
2010-02-28 11:01:18 +00:00
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
3 menu bar *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.menu {
border-bottom: 1px solid #C3D2E0;
2020-03-13 09:23:54 +00:00
margin-top: 0;
margin-bottom: 0;
2010-02-28 11:01:18 +00:00
padding: 4px;
background: #E3EFFA;
}
a.tab, a.tab:visited {
color:#000000;
text-decoration:none;
}
a.tab:hover, a.tab:active, .tab-selected {
2010-02-28 11:01:18 +00:00
color:#000000;
background-color:#FFFFFE;
2010-02-28 11:01:18 +00:00
text-decoration:none;
}
.tab, .tab-selected, .tframe, #tips {
2010-02-28 11:01:18 +00:00
-moz-border-radius:4px;
-webkit-border-radius:4px;
border:1px solid #C8D1DB;
cursor:default;
margin-right:2px;
padding:2px;
2023-03-21 02:37:24 +00:00
break-inside: avoid;
2010-02-28 11:01:18 +00:00
}
.tframe {
margin:4px;
2010-02-28 11:01:18 +00:00
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
3 secondary bars *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.sbar {
border-bottom: 1px solid #C3D2E0;
2020-03-13 09:23:54 +00:00
margin-top: 0;
2010-02-28 11:01:18 +00:00
margin-bottom: 16px;
padding: 4px;
background: #CEDFF0;
text-align: left;
}
.sfoot {
border-top: 1px solid #C3D2E0;
2020-03-13 09:23:54 +00:00
margin-top: 0;
margin-bottom: 0;
2010-02-28 11:01:18 +00:00
padding: 4px;
background: #CEDFF0;
2023-03-21 02:37:24 +00:00
text-align: center;
2010-02-28 11:01:18 +00:00
}
2023-03-21 02:37:24 +00:00
.navside, #comment-list-recent .blockbody {
background:none repeat scroll 0 0 #CEDFF0;
padding:4px;
font-size:85%;
border:1px solid #C3D2E0;
margin-bottom:5px;
-moz-border-radius:4px;
-webkit-border-radius:4px;
2010-02-28 11:01:18 +00:00
}
2023-03-21 02:37:24 +00:00
.navside.navtop, .shm-image-list, #Statsmain {
text-align:left;
}
.shm-image-list {
margin-top: 10px;
}
2010-02-28 11:01:18 +00:00
.navtop, .maintop {
font-size:110%;
border-bottom:0 none;
margin:0 0 2px 0; /* top right bottom left */
padding:2px 10px;
position:relative;
2020-03-13 09:23:54 +00:00
left:0;
width:50%;
2010-02-28 11:01:18 +00:00
}
.navtop {
top:7px;
2010-02-28 11:01:18 +00:00
}
.maintop {
2020-03-13 09:23:54 +00:00
top:0;
2010-02-28 11:01:18 +00:00
margin-top:5px;
margin-bottom:5px;
}
#tips, #blotter1, #blotter2 {
margin-right:16px;
margin-left:16px;
}
2010-02-28 11:01:18 +00:00
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
3 things common to all pages *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
H1 A {
color: black;
}
A, A:hover, A:active, A:visited {
color: #2860AD;
}
H3 {
text-align: center;
2020-03-13 09:23:54 +00:00
margin: 0;
2010-02-28 11:01:18 +00:00
}
THEAD {
font-weight: bold;
}
TD {
vertical-align: top;
text-align: left;
2010-02-28 11:01:18 +00:00
}
CODE {
background: #DEDEDE;
font-size: 0.8rem;
2010-02-28 11:01:18 +00:00
}
2020-03-13 09:23:54 +00:00
TABLE.zebra {border-spacing: 0; border: 2px solid #C3D2E0;}
2010-02-28 11:01:18 +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 #C3D2E0;}
TABLE.zebra TFOOT TD, TABLE.zebra TFOOT TH {border-top: 2px solid #C3D2E0;}
TABLE.zebra TR TD {border-bottom: 1px solid #C3D2E0;}
2012-02-22 14:27:56 +00:00
TABLE.zebra TR:nth-child(odd) {background: #CEDFF0;}
TABLE.zebra TR:nth-child(even) {background: #F0F7FF;}
2023-03-21 02:37:24 +00:00
TABLE.image_info {margin: auto;}
2010-02-28 11:01:18 +00:00
INPUT, TEXTAREA, button {
2010-02-28 11:01:18 +00:00
-moz-border-radius:4px;
-webkit-border-radius:4px;
border:1px solid #C8D1DB;
cursor:default;
margin-right:2px;
padding:2px;
}
INPUT:hover, button:hover, TEXTAREA:hover {
2010-02-28 11:01:18 +00:00
background-color:#FFFFFF;
text-decoration:none;
}
2012-03-11 16:18:37 +00:00
FOOTER {
2010-02-28 11:01:18 +00:00
clear: both;
padding: 8px;
font-size: 0.7rem;
2023-03-21 02:37:24 +00:00
text-align: center;
2010-02-28 11:01:18 +00:00
border-top: 1px solid #C3D2E0;
background: #E3EFFA;
}
A {text-decoration: none;}
A:hover {text-decoration: underline;}
BLOCKQUOTE {
border: 1px solid #C3D2E0;
2010-02-28 11:01:18 +00:00
padding: 8px;
background: #E3EFFA;
2010-02-28 11:01:18 +00:00
}
UL {
text-align: left;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* the navigation bar, and all its blocks *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2012-03-11 16:18:37 +00:00
NAV {
2010-02-28 11:01:18 +00:00
width: 200px;
float: left;
text-align: center;
margin-left: 16px;
}
2012-03-11 16:18:37 +00:00
NAV .blockbody {
font-size: 0.85rem;
2010-02-28 11:01:18 +00:00
text-align: center;
}
2012-03-11 16:18:37 +00:00
NAV TABLE {
2010-02-28 11:01:18 +00:00
width: 190px;
}
2012-03-11 16:18:37 +00:00
NAV TD {
2010-02-28 11:01:18 +00:00
vertical-align: middle;
}
NAV INPUT, nav button {
2010-02-28 11:01:18 +00:00
width: 95%;
2020-03-13 09:23:54 +00:00
padding: 0;
2010-02-28 11:01:18 +00:00
}
2012-03-11 16:18:37 +00:00
NAV SELECT {
2010-02-28 11:01:18 +00:00
width: 100%;
2020-03-13 09:23:54 +00:00
padding: 0;
2010-02-28 11:01:18 +00:00
}
#comments P {
text-align: left;
width: 150px;
max-width: 150px;
overflow: hidden;
}
.comment {
text-align: left;
}
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;
line-height: 1em;
}
TABLE.tag_list>TBODY>TR>TD:after {
content: " ";
2016-09-06 07:18:36 +00:00
}
2010-02-28 11:01:18 +00:00
.more:after {
content: " >>>";
}
.tag_count:before {
content: "(";
}
.tag_count:after {
content: ")";
}
.paginator {
padding: 4px;
border-right: 1px solid #C3D2E0;
border-left: 1px solid #C3D2E0;
}
.paginator A {
-moz-border-radius:4px;
-webkit-border-radius:4px;
color: #000;
border:1px solid #C8D1DB;
cursor:default;
margin-right:2px;
padding:2px;
}
.paginator A:hover {
background-color:#FFFFFF;
text-decoration:none;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* the main part of each page *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2012-03-11 16:18:37 +00:00
ARTICLE {
2010-02-28 11:01:18 +00:00
margin-left: 226px;
margin-right: 16px;
2023-03-21 02:37:24 +00:00
text-align: center;
2010-02-28 11:01:18 +00:00
height: 1%;
}
2019-05-29 17:23:29 +00:00
ARTICLE.body_noleft {
margin-left: 4px;
margin-right: 16px;
margin-bottom:16px;
padding-left:4px;
padding-right:4px;
text-align: left;
height: 1%;
}
2012-03-11 16:18:37 +00:00
ARTICLE TABLE {
2010-02-28 11:01:18 +00:00
width: 90%;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* specific page types *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#pagelist {
margin-top: 32px;
}
/*.rr {text-align: left; background: #E3EFFA; margin: 8px;}
.rrtop {background: url("circle-tl.png") no-repeat top left;}
.rrtop div {background: url("circle-tr.png") no-repeat top right;}
.rrbot {background: url("circle-bl.png") no-repeat bottom left;}
.rrbot div {background: url("circle-br.png") no-repeat bottom right;}
.rrtop, .rrtop div, .rrbot, .rrbot div {height: 8px; width: 100%;}
.rrcontent {margin: 0px 8px; text-align: left;}
.hrr {text-align: left; background: #C3D2E0; margin: 8px;}
.hrrtop {background: url("circle-tl.png") no-repeat top left;}
.hrrtop div {background: url("circle-tr.png") no-repeat top right;}
.hrrbot {background: url("circle-bl.png") no-repeat bottom left;}
.hrrbot div {background: url("circle-br.png") no-repeat bottom right;}
.hrrtop, .hrrtop div, .hrrbot, .hrrbot div {height: 8px; width: 100%;}
.hrrcontent {margin: 0px 8px;}*/
.setupblock {
text-align: center;
width: 350px;
}
.setupblock TEXTAREA {
width: 300px;
font-size: 0.75rem;
2010-02-28 11:01:18 +00:00
}
2012-03-11 16:18:37 +00:00
NAV .thumbblock {
2010-02-28 11:01:18 +00:00
float: none;
height: auto;
}
2012-03-11 16:18:37 +00:00
NAV .thumb {
2020-03-13 09:23:54 +00:00
margin-bottom: 0;
2010-02-28 11:01:18 +00:00
}
2023-03-21 02:37:24 +00:00
.shm-thumb {
width: 200px;
2010-02-28 11:01:18 +00:00
display: inline-block;
}
.thumb {
display: inline-block;
text-align: center;
margin-bottom: 32px;
}
.tooltip{
position:absolute;
top:0;
left:0;
z-index:3;
display:none;
2012-02-22 14:27:56 +00:00
}