*)New grey skin Thanks to Philipp Redeker! *)Renamed old skins until somebody updates them. git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2655 6c8d7289-2bf4-0310-a012-ef5d649a1542pull/1/head
parent
1aa07a52cd
commit
f17a91313e
@ -0,0 +1,226 @@
|
|||||||
|
/* Skin grey*/
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color:#f3f3f3;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link {
|
||||||
|
color:#5f5f5f;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link:hover {
|
||||||
|
color:#2f2f2f;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited{
|
||||||
|
color:#2f2f2f;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Menu */
|
||||||
|
|
||||||
|
.menugroup h3, .SubMenugroup h3, .SubMenu h3 {
|
||||||
|
background-color: #2f2f2f;
|
||||||
|
color:white;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.MenuItemLink, ul.SubMenu em, .MenuItemLink lock {
|
||||||
|
background-color: #d0d0d0;
|
||||||
|
color: black;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover.MenuItemLink {
|
||||||
|
color:#5f5f5f;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Head */
|
||||||
|
|
||||||
|
div.head h1 {
|
||||||
|
background-color:#2f2f2f;
|
||||||
|
color:white;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Tables */
|
||||||
|
|
||||||
|
.TableHeader {
|
||||||
|
background-color: #5f5f5f;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.TableCellDark {
|
||||||
|
background-color: #a0a0a0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.TableCellLight {
|
||||||
|
background-color: #d0d0d0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.TableCellSummary {
|
||||||
|
background-color: #ffbbaa;
|
||||||
|
}
|
||||||
|
|
||||||
|
.TableCellPassive {
|
||||||
|
background-color: lightgrey;
|
||||||
|
}
|
||||||
|
|
||||||
|
.TableCellActive {
|
||||||
|
background-color: #d0d0d0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Blog and Wiki*/
|
||||||
|
|
||||||
|
.Post {
|
||||||
|
background-color:#f3f3f3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.PostSubject {
|
||||||
|
background-color:#2f2f2f;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.PostSubject a {
|
||||||
|
color:black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.PostInfo {
|
||||||
|
background-color:#2f2f2f;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Wiki */
|
||||||
|
|
||||||
|
.WikiTOCBox {
|
||||||
|
border: 1px solid #aaa;
|
||||||
|
background-color: #F8F8FF;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.unknown {
|
||||||
|
color:#990000;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.known {
|
||||||
|
color:#009900;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.extern {
|
||||||
|
color:#000099;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* in Bookmarks */
|
||||||
|
|
||||||
|
.bookmark {
|
||||||
|
border-bottom:1px #000 dashed;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.bookmarkTitle {
|
||||||
|
color: #4070a0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover.bookmarkTitle {
|
||||||
|
color: #4070a0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.bookmarkTags {
|
||||||
|
color: #007050;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover.bookmarkTags {
|
||||||
|
color: #4070a0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.bookmarkAction {
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Tags {
|
||||||
|
border-left: 2px solid black;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* in Status.html */
|
||||||
|
|
||||||
|
.ProgressBar {
|
||||||
|
border: #CAD5E3 solid 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Copyright info */
|
||||||
|
|
||||||
|
.info {
|
||||||
|
border-top:1px solid gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Searchresults */
|
||||||
|
|
||||||
|
.searchresults {
|
||||||
|
border-top:1px #000 dashed;
|
||||||
|
}
|
||||||
|
|
||||||
|
.searchresults .url a {
|
||||||
|
color:#008000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.snippetLoading {
|
||||||
|
color:#999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.snippetError {
|
||||||
|
color:red;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* other */
|
||||||
|
|
||||||
|
.settingsValue {
|
||||||
|
color:#556699;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Headline {
|
||||||
|
background-color: #2f2f2f2;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Heading {
|
||||||
|
background-color: #2f2f2f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error, .warning {
|
||||||
|
color:red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.success {
|
||||||
|
color:green;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Message {
|
||||||
|
background-color: #eeeeee;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example {
|
||||||
|
background-color:#D3D3D3;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Log */
|
||||||
|
|
||||||
|
body#ViewLog pre {
|
||||||
|
background-color:white;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Forms */
|
||||||
|
|
||||||
|
fieldset {
|
||||||
|
background-color:#d0d0d0;
|
||||||
|
border:1px solid #5f5f5f;
|
||||||
|
}
|
||||||
|
|
||||||
|
legend {
|
||||||
|
background-color:#5f5f5f;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
form dt, dl.pairs dt {
|
||||||
|
background-color:#a0a0a0;
|
||||||
|
}
|
||||||
|
|
||||||
|
form dd, dl.pairs dd {
|
||||||
|
background-color:#f3f3f3;
|
||||||
|
}
|
@ -1,169 +1,238 @@
|
|||||||
body {
|
/* Skin phosphor */
|
||||||
background-color:#000000;
|
|
||||||
}
|
body {
|
||||||
|
background-color:#000000;
|
||||||
h1 {
|
color:#00ff00;
|
||||||
font-family:Helvetica, sans-serif;
|
}
|
||||||
font-size:16pt;
|
|
||||||
font-style:normal;
|
a:link {
|
||||||
line-height:14pt;
|
color:#336633;
|
||||||
margin-top:0pt;
|
}
|
||||||
margin-bottom:0pt;
|
|
||||||
color: #00ff51;
|
a:link:hover {
|
||||||
}
|
color:#009900;
|
||||||
|
text-decoration:underline;
|
||||||
h2 {
|
}
|
||||||
font-family:Helvetica, sans-serif;
|
|
||||||
font-size:14pt;
|
a:link:visited {
|
||||||
font-style:normal;
|
color:#339933;
|
||||||
line-height:14pt;
|
}
|
||||||
margin-top:0pt;
|
|
||||||
margin-bottom:0pt;
|
|
||||||
color: #00ff51;
|
/* Menu */
|
||||||
}
|
|
||||||
|
.menugroup h3, .SubMenugroup h3, .SubMenu h3 {
|
||||||
h3 {
|
background-color: #00ff00;
|
||||||
font-family:Helvetica, sans-serif;
|
color:#000000;
|
||||||
font-size:12pt;
|
}
|
||||||
font-style:normal;
|
|
||||||
line-height:14pt;
|
a.MenuItemLink, ul.SubMenu em {
|
||||||
margin-top:0pt;
|
background-color: #000000;
|
||||||
margin-bottom:0pt;
|
color: #00ff00;
|
||||||
color: #00ff51;
|
border: 1px solid #00ff00;
|
||||||
}
|
}
|
||||||
|
|
||||||
h4 {
|
a:hover.MenuItemLink {
|
||||||
font-family:Helvetica, sans-serif;
|
color:#006600;
|
||||||
font-size:10pt;
|
}
|
||||||
font-style:normal;
|
|
||||||
line-height:14pt;
|
/* Head */
|
||||||
margin-top:0pt;
|
|
||||||
margin-bottom:0pt;
|
div.head h1 {
|
||||||
color: #00ff51;
|
background-color:#00ff00;
|
||||||
}
|
color:#000000;
|
||||||
|
}
|
||||||
a {
|
|
||||||
color: #00ff00;
|
/* Tables */
|
||||||
}
|
|
||||||
|
.TableHeader {
|
||||||
|
background-color: #00ff00;
|
||||||
body, div, li, ol, span, table, td, tr, ul {
|
color:#000000;
|
||||||
color:#00ff00;
|
}
|
||||||
font-family:Helvetica, sans-serif;
|
|
||||||
font-size:10pt;
|
.TableCellDark {
|
||||||
font-style:normal;
|
background-color: #003300;
|
||||||
line-height:14px;
|
}
|
||||||
margin-top:0px;
|
|
||||||
margin-bottom:0px;
|
.TableCellLight {
|
||||||
color:#00ff00;
|
background-color: #000000;
|
||||||
}
|
color: #00ff00;
|
||||||
|
border: 1px solid #00ff00;
|
||||||
*.small {
|
}
|
||||||
font-family:Helvetica, sans-serif;
|
|
||||||
font-size:8pt;
|
.TableCellSummary {
|
||||||
font-style:normal;
|
background-color: #ffbbaa;
|
||||||
line-height:9px;
|
}
|
||||||
margin-top:0px;
|
|
||||||
margin-bottom:0px;
|
.TableCellPassive {
|
||||||
color:#00ff00;
|
background-color: lightgrey;
|
||||||
}
|
}
|
||||||
|
|
||||||
body, div, li, ol, span, table, td, tr, ul {
|
.TableCellActive {
|
||||||
text-decoration:none;
|
background-color: #d0d0d0;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
/* Blog and Wiki*/
|
||||||
color:#ff0000;
|
|
||||||
}
|
.Post {
|
||||||
|
background-color:#000000;
|
||||||
a.unknown {
|
color: #00ff00;
|
||||||
color:#ff0000;
|
}
|
||||||
}
|
|
||||||
|
.PostSubject {
|
||||||
a.known {
|
background-color:#00ff00;
|
||||||
color:#ff0000;
|
color:#000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.extern {
|
.PostSubject a {
|
||||||
color:#ff0000;
|
color:black;
|
||||||
}
|
}
|
||||||
|
|
||||||
*.tt {
|
.PostInfo {
|
||||||
font-family:Courier,Terminal,sans-serif;
|
background-color:#000000;
|
||||||
font-size:8pt;
|
color: #00ff00;
|
||||||
line-height:9px;
|
border:1px solid #00ff00;
|
||||||
}
|
|
||||||
|
}
|
||||||
|
|
||||||
.Menu {
|
/* Wiki */
|
||||||
width: 100;
|
|
||||||
}
|
.WikiTOCBox {
|
||||||
.MenuHeader {
|
border: 1px solid #aaa;
|
||||||
background-color: #787878;
|
background-color: #F8F8FF;
|
||||||
font-size: 1;
|
}
|
||||||
font-weight:bold;
|
|
||||||
}
|
a.unknown {
|
||||||
.MenuItem {
|
color:#990000;
|
||||||
background-color: #555555;
|
}
|
||||||
color:white;
|
|
||||||
font-weight:bold;
|
a.known {
|
||||||
text-decoration:none;
|
color:#009900;
|
||||||
font-size:11px;
|
}
|
||||||
padding-top: 2;
|
|
||||||
padding-bottom: 2;
|
a.extern {
|
||||||
}
|
color:#000099;
|
||||||
.MenuItemLink {
|
}
|
||||||
color: 00ff00;
|
|
||||||
font-weight:bold;
|
/* in Bookmarks */
|
||||||
text-decoration:none;
|
|
||||||
font-size:11px;
|
.bookmark {
|
||||||
}
|
border-bottom:1px #000 dashed;
|
||||||
a.MenuItemLink:hover {
|
}
|
||||||
color:#ff0000;
|
|
||||||
font-weight:bold;
|
a.bookmarkTitle {
|
||||||
text-decoration:none;
|
color: #4070a0;
|
||||||
}
|
}
|
||||||
.MenuSpacer {
|
|
||||||
height: 6;
|
a:hover.bookmarkTitle {
|
||||||
}
|
color: #4070a0;
|
||||||
.Headline {
|
}
|
||||||
font-weight: bold;
|
|
||||||
font-size: 160%;
|
a.bookmarkTags {
|
||||||
font-family: Helvetica, Arial;
|
color: #007050;
|
||||||
text-align: center;
|
}
|
||||||
color: #aaaaaa;
|
|
||||||
}
|
a:hover.bookmarkTags {
|
||||||
.Heading {
|
color: #4070a0;
|
||||||
background-color: #343434;
|
}
|
||||||
height: 36px;
|
|
||||||
}
|
a.bookmarkAction {
|
||||||
|
color: #999999;
|
||||||
.TableHeader {
|
}
|
||||||
background-color: #8c8c8c;
|
|
||||||
}
|
.Tags {
|
||||||
.TableCellDark {
|
border-left: 2px solid black;
|
||||||
background-color: #767676;
|
}
|
||||||
}
|
|
||||||
.TableCellLight {
|
|
||||||
background-color: #8c8c8c;
|
/* in Status.html */
|
||||||
}
|
|
||||||
.TableCellSummary {
|
.ProgressBar {
|
||||||
background-color: #383838;
|
border: #CAD5E3 solid 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.WikiBackground {
|
/* Copyright info */
|
||||||
background-color: #fefefe;
|
|
||||||
}
|
.info {
|
||||||
|
border-top:1px solid gray;
|
||||||
.MessageBackground {
|
}
|
||||||
background-color: #ffffff;
|
|
||||||
}
|
/* Searchresults */
|
||||||
input, select{
|
|
||||||
background-color: #000000;
|
.searchresults {
|
||||||
color: #00ff00;
|
border-top:1px #000 dashed;
|
||||||
border: 1px solid #00ff00;
|
}
|
||||||
}
|
|
||||||
option{
|
.searchresults .url a {
|
||||||
background-color: #000000;
|
color:#008000;
|
||||||
color: #00ff00;
|
}
|
||||||
}
|
|
||||||
|
.snippetLoading {
|
||||||
|
color:#999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.snippetError {
|
||||||
|
color:red;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* other */
|
||||||
|
|
||||||
|
.settingsValue {
|
||||||
|
color:#556699;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Headline {
|
||||||
|
background-color: #00ff00;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Heading {
|
||||||
|
background-color: #00ff00;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error, .warning {
|
||||||
|
color:red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.success {
|
||||||
|
color:green;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Message {
|
||||||
|
background-color: #eeeeee;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example {
|
||||||
|
background-color:#D3D3D3;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Log */
|
||||||
|
|
||||||
|
body#ViewLog pre {
|
||||||
|
background-color:white;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Forms */
|
||||||
|
|
||||||
|
fieldset {
|
||||||
|
background-color:#000000;
|
||||||
|
border:1px solid #00ff00;
|
||||||
|
}
|
||||||
|
|
||||||
|
legend {
|
||||||
|
background-color:#5f5f5f;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
form dt, dl.pairs dt {
|
||||||
|
background-color:#00ff00;
|
||||||
|
color:#000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
form dd, dl.pairs dd {
|
||||||
|
background-color: #000000;
|
||||||
|
color: #00ff00;
|
||||||
|
border: 1px solid #00ff00;
|
||||||
|
}
|
||||||
|
Loading…
Reference in new issue