base.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. html, body {
  2. margin:0;
  3. padding:0;
  4. font-family: "Lucida Grande", Verdana;
  5. font-size: 0.9em;
  6. text-align: center;
  7. background-color:#F2F2F2;
  8. }
  9. input, select {
  10. font-size:0.9em;
  11. }
  12. table {
  13. margin-top:-10px;
  14. margin-left:7px;
  15. }
  16. h4 {
  17. font-size:1.1em;
  18. text-decoration:none;
  19. font-weight:normal;
  20. color:#23A4FF;
  21. }
  22. a {
  23. color:#23A4FF;
  24. }
  25. #container {
  26. width: 1000px;
  27. height: 600px;
  28. margin:0 auto;
  29. position:relative;
  30. }
  31. #left-container,
  32. #right-container,
  33. #center-container {
  34. height:600px;
  35. position:absolute;
  36. top:0;
  37. }
  38. #left-container, #right-container {
  39. width:200px;
  40. color:#686c70;
  41. text-align: left;
  42. overflow: auto;
  43. background-color:#fff;
  44. background-repeat:no-repeat;
  45. border-bottom:1px solid #ddd;
  46. }
  47. #left-container {
  48. left:0;
  49. background-image:url('col2.png');
  50. background-position:center right;
  51. border-left:1px solid #ddd;
  52. }
  53. #right-container {
  54. right:0;
  55. background-image:url('col1.png');
  56. background-position:center left;
  57. border-right:1px solid #ddd;
  58. }
  59. #right-container h4{
  60. text-indent:8px;
  61. }
  62. #center-container {
  63. width:600px;
  64. left:200px;
  65. background-color:#1a1a1a;
  66. color:#ccc;
  67. }
  68. .text {
  69. margin: 7px;
  70. }
  71. #inner-details {
  72. font-size:0.8em;
  73. list-style:none;
  74. margin:7px;
  75. }
  76. #log {
  77. position:absolute;
  78. top:10px;
  79. font-size:1.0em;
  80. font-weight:bold;
  81. color:#23A4FF;
  82. }
  83. #infovis {
  84. position:relative;
  85. width:600px;
  86. height:600px;
  87. margin:auto;
  88. overflow:hidden;
  89. }
  90. /*TOOLTIPS*/
  91. .tip {
  92. color: #111;
  93. width: 139px;
  94. background-color: white;
  95. border:1px solid #ccc;
  96. -moz-box-shadow:#555 2px 2px 8px;
  97. -webkit-box-shadow:#555 2px 2px 8px;
  98. -o-box-shadow:#555 2px 2px 8px;
  99. box-shadow:#555 2px 2px 8px;
  100. opacity:0.9;
  101. filter:alpha(opacity=90);
  102. font-size:10px;
  103. font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
  104. padding:7px;
  105. }