123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700');
  2. @import url('//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css');
  3. /*side bar menu*/
  4. .sidebar-toggle {
  5. margin-left: -240px;
  6. }
  7. .sidebar {
  8. width: 240px;
  9. height: 100%;
  10. /*background: #293949;*/
  11. background: #000;
  12. background: -moz-linear-gradient(-45deg,#000 0,#ffff00 100%);
  13. background: -webkit-linear-gradient(-45deg,#000 0,#ffff00 100%);
  14. background: linear-gradient(135deg,#000 0,#ffff00 100%);
  15. position: fixed;
  16. -webkit-transition: all 0.3s ease-in-out;
  17. -moz-transition: all 0.3s ease-in-out;
  18. -o-transition: all 0.3s ease-in-out;
  19. -ms-transition: all 0.3s ease-in-out;
  20. transition: all 0.3s ease-in-out;
  21. z-index: 100;
  22. /*top:80px;*/
  23. }
  24. .sidebar #leftside-navigation ul,
  25. .sidebar #leftside-navigation ul ul {
  26. margin: -2px 0 0;
  27. padding: 0;
  28. }
  29. .sidebar #leftside-navigation ul li {
  30. list-style-type: none;
  31. border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  32. }
  33. .sidebar #leftside-navigation ul li.active > a {
  34. color: #1abc9c;
  35. }
  36. .sidebar #leftside-navigation ul li.active ul {
  37. display: block;
  38. }
  39. .sidebar #leftside-navigation ul li a {
  40. color: #FFD200;
  41. text-decoration: none;
  42. display: block;
  43. padding: 18px 0 18px 25px;
  44. font-size: 12px;
  45. outline: 0;
  46. -webkit-transition: all 200ms ease-in;
  47. -moz-transition: all 200ms ease-in;
  48. -o-transition: all 200ms ease-in;
  49. -ms-transition: all 200ms ease-in;
  50. transition: all 200ms ease-in;
  51. }
  52. .sidebar #leftside-navigation ul li a:hover {
  53. color: #1abc9c;
  54. }
  55. .sidebar #leftside-navigation ul li a span {
  56. display: inline-block;
  57. }
  58. .sidebar #leftside-navigation ul li a i {
  59. width: 20px;
  60. }
  61. .sidebar #leftside-navigation ul li a i .fa-angle-left,
  62. .sidebar #leftside-navigation ul li a i .fa-angle-right {
  63. padding-top: 3px;
  64. }
  65. .sidebar #leftside-navigation ul ul {
  66. display: none;
  67. }
  68. .sidebar #leftside-navigation ul ul li {
  69. /*background: #23313f;*/
  70. margin-bottom: 0;
  71. margin-left: 0;
  72. margin-right: 0;
  73. border-bottom: none;
  74. }
  75. .sidebar #leftside-navigation ul ul li a {
  76. font-size: 12px;
  77. padding-top: 13px;
  78. padding-bottom: 13px;
  79. /*color: #aeb2b7;*/
  80. color: #eee;
  81. }
  82. /*end menu*/
  83. /*tile SVG */
  84. rect.bordered {
  85. stroke: #E6E6E6;
  86. stroke-width:2px;
  87. }
  88. text.mono {
  89. font-size: 9pt;
  90. font-family: Consolas, courier;
  91. fill: #aaa;
  92. }
  93. text.axis-workweek {
  94. fill: #000;
  95. }
  96. text.axis-worktime {
  97. fill: #000;
  98. }
  99. div.tooltip {
  100. position: absolute;
  101. text-align: center;
  102. width: 80px;
  103. height: 50px;
  104. padding: 2px;
  105. font: 12px sans-serif;
  106. background: lightsteelblue;
  107. border: 0px;
  108. border-radius: 8px;
  109. pointer-events: none;
  110. }
  111. /*day_of_week svg*/
  112. div.rect_tooltip {
  113. position: absolute;
  114. text-align: center;
  115. width: 80px;
  116. height: 35px;
  117. padding: 2px;
  118. font: 12px sans-serif;
  119. background: orange;
  120. border: 0px;
  121. border-radius: 8px;
  122. pointer-events: none;
  123. }
  124. /*end svg
  125. /*dashboard styling*/
  126. .main_dash{
  127. padding-left: 250px;
  128. padding-top: 30px;
  129. }
  130. .zebra_img{
  131. width:100px;
  132. height:30px;
  133. }
  134. .black{
  135. background-color: #222;
  136. border-color: #080808;
  137. position: fixed;
  138. }
  139. .top_spacer{
  140. margin-top:2%;
  141. }
  142. .details_spacer{
  143. padding: 25px 0 0 0;
  144. border-top:1px solid #cecece;
  145. }
  146. .text_content{
  147. padding: 10px 0px;
  148. }
  149. .metric{
  150. height: 400px;
  151. }
  152. .drop-shadow{
  153. box-shadow: 1px 1px 5px #888888;
  154. }
  155. /*line chart*/
  156. .axis--x path {
  157. display: none;
  158. }
  159. .line {
  160. fill: none;
  161. stroke-width: 1.5px;
  162. }
  163. .grid line {
  164. stroke: lightgrey;
  165. stroke-opacity: 0.7;
  166. shape-rendering: crispEdges;
  167. }
  168. .grid path {
  169. stroke-width: 0;
  170. }