show.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .show-view.peak-detector-agent,
  2. .show-view.twitter-stream-agent {
  3. .rickshaw_annotation_timeline {
  4. left: 60px;
  5. width: 700px;
  6. }
  7. .filter-group {
  8. margin-bottom: 20px;
  9. &.tweets {
  10. border-left: 5px solid #eee;
  11. padding-left: 10px;
  12. }
  13. .filter {
  14. font-weight: bold;
  15. margin: 10px 0;
  16. }
  17. .tweet {
  18. margin-bottom: 10px;
  19. }
  20. .chart-container {
  21. position: relative;
  22. font-family: Arial, Helvetica, sans-serif;
  23. .chart {
  24. position: relative;
  25. left: 60px;
  26. overflow: hidden;
  27. width: 700px;
  28. }
  29. .summary-statistic {
  30. stroke-width: 2;
  31. stroke: #000;
  32. stroke-dasharray: 9, 5;
  33. &.mean {
  34. stroke-opacity: 0.4;
  35. stroke-dasharray: none;
  36. }
  37. &.one-std {
  38. stroke-opacity: 0.3;
  39. }
  40. &.two-std {
  41. stroke-opacity: 0.2;
  42. }
  43. &.three-std {
  44. stroke-opacity: 0.1;
  45. }
  46. }
  47. .y-axis {
  48. position: absolute;
  49. top: 0;
  50. bottom: 0;
  51. width: 60px;
  52. }
  53. }
  54. }
  55. }