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
|
/**
* $Horde: horde/themes/NeXTgrey/screen.css,v 1.6.6.3 2005/10/18 11:34:10 jan Exp $
*/
body {
background: #444;
scrollbar-base-color: #aca9ac;
scrollbar-arrow-color: #aca9ac;
}
html {
scrollbar-base-color: #aca9ac;
scrollbar-arrow-color: #aca9ac;
}
a, a.fixed {
color: #339;
}
a.widget {
color: #000;
}
a.widget:hover {
color: white;
background: #ccc;
}
.header {
color: #9f9fa0;
background: #000;
}
.header a {
color: #9f9fa0;
}
.smallheader {
color: #9f9fa0;
background: #000;
}
.button {
color: #000;
background-color: #aca9ac;
border-bottom: thin solid #222;
border-right: thin solid #222;
border-top: thin solid #ddd;
border-left: thin solid #ddd;
}
.selected {
background-color: #aca9ac;
}
/* Menu styles. */
#menu {
color: #fff;
background-color: #aca9ac;
}
#menu h1 {
color: #000;
}
#menu a {
color: #fff;
}
#menu a.current {
background-color: #878787;
color: #ddd;
}
/* Sidebar styles. */
#sidebarPanel {
background-color: #999;
border-right: 1px solid #222;
border-bottom: 1px solid #222;
}
#expandButton {
margin-right: 1px;
}
|