1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
/**
* $Horde: horde/themes/grey/screen.css,v 1.7.6.13 2005/10/18 11:34:18 jan Exp $
*/
body {
background: #5d5d60;
scrollbar-base-color: #5d5d60;
scrollbar-arrow-color: #5d5d60;
}
html {
scrollbar-base-color: #5d5d60;
scrollbar-arrow-color: #5d5d60;
}
a {
color: #595959;
}
.widget {
color: #333;
font-weight: bold;
}
a.widget:hover {
color: #000;
background: #ddd;
text-decoration: none;
}
.header {
color: #ddd;
background: #545456;
}
.header a {
color: #ddd;
}
a.light:hover {
color: #fff;
}
.smallheader {
color: #9f9fa0;
background: #545456;
}
.button {
color: #fff;
background: #515163;
border-bottom: thin solid #5d5d60;
border-right: thin solid #5d5d60;
border-top: thin solid #777789;
border-left: thin solid #777789;
}
.item {
color: #000;
background: #eee;
}
.selected {
background: #ddd;
}
/* Menu styles. */
#menu {
color: #fff;
background: #545456;
}
#menu a {
color: #fff;
}
#menu a.current {
background: #666;
}
/* Sidebar styles. */
#sidebarPanel {
background: #666;
}
#sidebarPanel span, #sidebarPanel a {
color: #fff;
}
#sidebarPanel a:hover {
color: yellow;
}
/* Tab styles. */
.tabset {
border-bottom: 1px solid #545456;
}
.tabset li a {
border-bottom: 1px solid #545456;
background: #e9e9e9;
}
.tabset li.activeTab a {
color: #ddd;
background: #545456;
border-bottom: 1px solid #545456;
}
.tabset li.activeTab a:hover {
color: #fff;
background: #545456;
}
/* Preferences overview. */
.prefsOverview h2 {
color: #fff;
}
|