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
|
/**
* $Horde: horde/themes/simplex/screen.css,v 1.8.6.4 2005/10/18 11:34:21 jan Exp $
*/
body {
background: #eee url(graphics/background.png);
scrollbar-base-color: #7390b9;
}
html {
scrollbar-base-color: #7390b9;
}
a {
color: #3c7ae9;
}
a:hover {
color: #1b57c2;
}
a.widget {
color: #000;
}
.header {
color: #fff;
background: #7390b9;
}
.header a {
color: #fff;
}
.light {
color: #4e5d72;
}
.smallheader {
color: #fff;
background: #7390b9;
}
.item {
background-color: #eceff4;
}
.button {
color: #3c7ae9;
background-color: #ddd;
border: 1px solid #000;
padding: 0 2px;
}
.button:hover {
color: #fff;
background-color: #999;
}
select {
background-color: #78A4F1;
color: #eee;
}
/* Menu styles. */
#menu {
color: #fff;
background: #7390b9;
}
#menu a {
color: #fff;
}
#menu a.current {
background: #58a2dc;
}
#menu a:hover {
background: #58a2dc;
}
/* Sidebar styles. */
#sidebarPanel {
background-color: #eee;
border-right: 1px solid #999;
border-bottom: 1px solid #999;
}
#expandButton {
margin-right: 1px;
}
|