default.css 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. @import url(calendar.css);
  2. body {
  3. background: #ffffff;
  4. color: #000000;
  5. font-family: "BitStream Vera Sans", Verdana, Arial, Helvetica, sans-serif;
  6. font-size: 11px;
  7. font-weight: normal;
  8. text-align: left;
  9. }
  10. #container {
  11. width:970px;
  12. margin:auto;
  13. }
  14. a {
  15. text-decoration: none;
  16. color: #888888;
  17. }
  18. a:hover {
  19. text-decoration: underline;
  20. color: #888888;
  21. }
  22. a:visited, a:active {
  23. color: #888888;
  24. }
  25. table {
  26. /* border-spacing: 0; */
  27. /* padding: 0; */
  28. border-collapse: collapse; /* for IE */
  29. text-align: left;
  30. }
  31. input, .button, textarea {
  32. padding: 6px;
  33. }
  34. input, .button, textarea, select {
  35. font-family: "BitStream Vera Sans", Verdana, Arial, Helvetica, sans-serif;
  36. font-size: 13px;
  37. }
  38. .readonly {
  39. background:#eee;
  40. }
  41. .button {
  42. border: 1px solid #aaaaaa;
  43. color: #777777;
  44. background: #dddddd;
  45. padding: 3px 3px 3px 3px;
  46. }
  47. .button:hover, .button:focus {
  48. background: #eee;
  49. color: #666;
  50. text-decoration:none;
  51. }
  52. .flat {
  53. border: 1px solid #888888;
  54. }
  55. ul.flash-info {
  56. border:2px solid #AFE1A6; /* medium green */
  57. padding:1em;
  58. max-width:970px;
  59. margin-left:auto;
  60. margin-right:auto;
  61. list-style:none;
  62. }
  63. ul.flash-error {
  64. border:2px solid #FF6347; /* tomato */
  65. padding:1em;
  66. max-width:970px;
  67. margin-left:auto;
  68. margin-right:auto;
  69. list-style:none;
  70. }
  71. .error_msg {
  72. color: #d01313;
  73. }
  74. #motd {
  75. color: maroon;
  76. padding-top:2em;
  77. }
  78. .standout {
  79. color: maroon;
  80. padding: 3px 3px 3px 3px;
  81. text-align: center;
  82. }
  83. #login_header, #login, #main_menu, #overview,
  84. #admin_domains, #admin_virtual, .nav_bar, #alias_domain_table,
  85. #alias_table, #mailbox_table, #overview_table, #log_table,
  86. #admin_table, #footer, .subnav {
  87. width: 990px;
  88. margin: 0 auto;
  89. }
  90. #login_header {
  91. padding-bottom: 10px;
  92. text-align: left;
  93. }
  94. #login {
  95. width: 990px;
  96. margin: 0 auto;
  97. background: url(../images/mail_bg.gif) right 50% no-repeat;
  98. }
  99. #login_table {
  100. border-left: none;
  101. border-right: 1px solid #999;
  102. width: 400px;
  103. margin: 0 0 0 200px;
  104. border-collapse: separate;
  105. border-spacing: 10px;
  106. }
  107. #login_table h4 {
  108. font-size: 13px;
  109. }
  110. #menu, #tabbar {
  111. text-align:center;
  112. float:left;
  113. width:100%;
  114. margin: 0 auto;
  115. padding-top: 10px;
  116. white-space: nowrap;
  117. }
  118. #menu ul, #tabbar ul {
  119. padding: 0;
  120. margin: 0;
  121. margin-left:auto;
  122. margin-right:auto;
  123. list-style: none;
  124. text-align: center;
  125. position:relative;
  126. width:990px;
  127. float:left;
  128. }
  129. #menu li, #tabbar li {
  130. float: left;
  131. background: #efefef;
  132. margin-right: 3px;
  133. border-top: 4px solid #aaaaaa;
  134. position:relative;
  135. }
  136. #menu li:hover, #menu li.sfhover, #tabbar li:hover, #tabbar li.sfhover {
  137. background: #ccc;
  138. }
  139. #menu li ul, #tabbar li ul {
  140. position: absolute;
  141. width: auto;
  142. left: -999em;
  143. right:auto;
  144. background: #FFFFFF;
  145. color: #999999;
  146. border:2px solid white;
  147. border-top:none;
  148. }
  149. #menu li:hover ul, #menu li.sfhover ul, #tabbar li:hover ul, #tabbar li.sfhover ul {
  150. left: auto;
  151. }
  152. #menu li ul li, #tabbar li ul li {
  153. float: none;
  154. margin-right: 0px;
  155. border-top:2px solid white;
  156. text-align:left;
  157. right:auto;
  158. }
  159. #menu a, #tabbar a {
  160. display: block;
  161. width: auto;
  162. padding: 20px 5px 5px 5px;
  163. }
  164. #menu a, #tabbar a, #menu a:hover, #tabbar a:hover {
  165. color: #888888;
  166. }
  167. #menu li ul li a, #tabbar li ul li a {
  168. padding: 5px 5px 5px 5px;
  169. }
  170. .subnav p {
  171. padding-left:10px;
  172. margin-top:2em;
  173. margin-bottom:0;
  174. font-size:12px;
  175. }
  176. #edit_form table {
  177. margin: 0 50px;
  178. padding-top: 10px;
  179. text-align: left;
  180. }
  181. #edit_form th {
  182. text-align: left;
  183. font-size: 12px;
  184. margin: 0;
  185. line-height: 25px;
  186. }
  187. .hlp_center {
  188. text-align: center;
  189. }
  190. .help_text {
  191. text-align: center;
  192. padding-top: 5px;
  193. padding-bottom: 5px;
  194. }
  195. #main_menu table {
  196. margin: 0 0;
  197. text-align: left;
  198. padding-top: 20px;
  199. padding-bottom: 20px;
  200. }
  201. #main_menu table td {
  202. padding-left: 30px;
  203. padding-bottom: 5px;
  204. }
  205. #main_menu a {
  206. padding-left: 8px;
  207. }
  208. #main_menu a:hover {
  209. color: #333;
  210. text-decoration: none;
  211. padding-left: 4px;
  212. border-bottom: none;
  213. border-left: 4px solid #333;
  214. }
  215. #overview h4, #overview P, #overview FORM, #admin_virtual h4, #admin_virtual P, #admin_virtual FORM {
  216. display: inline;
  217. padding-right: 10px;
  218. line-height: 30px;
  219. }
  220. #alias_domain_table .header, #alias_table .header, #mailbox_table .header, #overview_table .header, #log_table .header, #admin_table .header {
  221. line-height: 20px;
  222. background: #efefef;
  223. color: black;
  224. }
  225. #alias_domain_table h3, #alias_table h3, #mailbox_table h3, #overview_table h3, #log_table h3, #admin_table h3 {
  226. text-align: left;
  227. font-size: 12px;
  228. font-weight: bold;
  229. padding-left: 20px;
  230. line-height: 25px;
  231. margin: 0;
  232. }
  233. #alias_domain_table .hilightoff, #alias_table .hilightoff, #mailbox_table .hilightoff, #overview_table .hilightoff, #log_table .hilightoff, #admin_table .hilighoff {
  234. background: white;
  235. }
  236. #alias_domain_table .hilighton, #alias_table .hilighton, #mailbox_table .hilighton, #overview_table .hilighton, #log_table .hilighton, #admin_table .hilighton {
  237. background: #eee; /*#D6FF85;*/ /*#ffdddd;*/
  238. }
  239. #alias_domain_table tr:hover, #alias_table tr:hover, #mailbox_table tr:hover, #overview_table tr:hover, #log_table tr:hover, #admin_table tr:hover {
  240. background: #eee; /*#D6FF85;*/ /*#ffdddd;*/
  241. }
  242. th {
  243. text-align: center;
  244. padding:7px 0;
  245. margin: 0 0 14px 0;
  246. border-bottom: 1px solid #bbb;
  247. color: #555555;
  248. }
  249. td {
  250. padding:7px 7px;
  251. }
  252. td.label {
  253. text-align:right;
  254. margin-right:0px;
  255. }
  256. label {
  257. padding-right:0;
  258. font-weight:bold;
  259. vertical-align:middle;
  260. }
  261. #alias_domain_table td, #alias_table td, #mailbox_table td, #overview_table td, #log_table td, #admin_table td {
  262. text-align: left;
  263. }
  264. #footer {
  265. width:975px;
  266. margin: 20px auto;
  267. border-top: 1px solid #bbbbbb;
  268. background: #efefef;
  269. color: #999999;
  270. line-height: 20px;
  271. text-align: left;
  272. padding-left: 15px;
  273. font-size: 9px;
  274. }
  275. #footer a {
  276. text-decoration: none;
  277. color: #999999;
  278. }
  279. #footer a:hover {
  280. text-decoration: underline;
  281. color: #777777;
  282. }
  283. div.setup {
  284. width:700px;
  285. margin-left:auto;
  286. margin-right:auto;
  287. text-align: left;
  288. }
  289. div.setup li {
  290. padding-bottom:1em;
  291. }
  292. .searchresult {
  293. background:lightgreen;
  294. }
  295. span.active {
  296. font-weight:bold;
  297. }
  298. div.nav_bar {
  299. text-align: left;
  300. }
  301. .quota {
  302. z-index:99;
  303. height:14px;
  304. position: absolute;
  305. }
  306. .quota_text {
  307. z-index:100;
  308. text-align: center;
  309. font-size: 10px;
  310. color: #666;
  311. cursor: default;
  312. position: absolute;
  313. width:120px;
  314. height:14px;
  315. margin-top:-14px;
  316. }
  317. .quota_bg { background-color: white; z-index:98; width:120px; height:14px;margin-top:-1px;margin-left:-1px; border: 1px solid #999;}
  318. .quota_no_border { border:none; margin:0; }
  319. .quota_high { background: url(../images/quota-colors.png) repeat-x 0 -28px #f90509; }
  320. .quota_mid { background: url(../images/quota-colors.png) repeat-x 0 -14px #e3e909; }
  321. .quota_low { background: url(../images/quota-colors.png) repeat-x 0 0px #05f905; }
  322. .quota_text_high { color: white; }
  323. .quota_text_mid { color: #666; }
  324. .quota_text_low { color: #666; }