Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. body {
  2. font-family: sans-serif;
  3. }
  4.  
  5. h1 {
  6. margin-top: 30px;
  7. margin-bottom: 30px;
  8. }
  9.  
  10. p {
  11. margin-bottom: 30px;
  12. text-align: justify;
  13. }
  14.  
  15. .page-container {
  16. text-align: center;
  17. }
  18.  
  19. .page {
  20. width: 1200px;
  21. margin: 0 auto;
  22. text-align: left;
  23. }
  24.  
  25. .text-container {
  26. width: 800px;
  27. padding-left: 50px;
  28. }
  29.  
  30. .d3-container {
  31. font: 10px sans-serif;
  32. }
  33.  
  34. button {
  35. padding: 5px 10px;
  36. margin-right: 5px;
  37. border: 0px none;
  38. outline: none;
  39. color: black;
  40. background-color: #EEEEEE;
  41. cursor: pointer;
  42. transition: background-color 250ms, color 250ms;
  43. }
  44.  
  45. button.active {
  46. color: white;
  47. background-color: #434B96;
  48. }
  49.  
  50. button:hover {
  51. color: white;
  52. background-color: #434B96;
  53. }
  54.  
  55. label {
  56. cursor: pointer;
  57. transition: color 250ms;
  58. }
  59.  
  60. label:hover {
  61. text-decoration: underline;
  62. color: #434B96;
  63. }
  64.  
  65. input[type="checkbox"] {
  66. margin-right: 5px;
  67. }
  68.  
  69. .axis path,
  70. .axis line {
  71. fill: none;
  72. stroke: #000000;
  73. }
  74.  
  75. .axis.x text {
  76. text-anchor: start !important;
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement