Guest User

Untitled

a guest
Sep 25th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. /* demo.css */
  2.  
  3. h1 {
  4. font-family: "Helvetica Neue";
  5. font-size: extra-large;
  6. }
  7.  
  8. body {
  9. font-family: "Helvetica Neue";
  10. font-size: small;
  11. position: relative;
  12. margin: auto;
  13. margin-top: 40px;
  14. margin-bottom: 4em;
  15. }
  16.  
  17. footer {
  18. font-size: small;
  19. margin-top: 8em;
  20. }
  21.  
  22. aside {
  23. font-size: small;
  24. left: 780px;
  25. position: absolute;
  26. width: 180px;
  27. }
  28.  
  29. body > p, li > p {
  30. line-height: 1.5em;
  31. }
  32.  
  33. body > p {
  34. width: 720px;
  35. }
  36.  
  37. body > blockquote {
  38. width: 640px;
  39. }
  40.  
  41.  
  42. li {
  43. width: 680px;
  44. }
  45.  
  46. a {
  47. color: steelblue;
  48. }
  49.  
  50. .axis {
  51. stroke: #000;
  52. stroke-width: 1.5px;
  53. }
  54.  
  55.  
  56. #demo_1 svg, #demo_2 svg { border: 0px; }
  57.  
  58.  
  59. .node ellipse { stroke: #000; }
  60. .node ellipse[class^="active_"] { stroke-width: 6px; }
  61. .node ellipse.active_ib { stroke: blue; }
  62. .node ellipse.active_im { stroke: green; }
  63. .node ellipse.active_mo { stroke: red; }
  64.  
  65.  
  66. .link {
  67. fill: none;
  68. stroke: #ccc;
  69. stroke-opacity: 0.3;
  70. stroke-width: 2px;
  71. }
  72.  
  73. .link.active_ib, .link.active_im, .link.active_mo {
  74. stroke-opacity: 1;
  75. stroke-width: 3px;
  76. }
  77.  
  78. .link.active_ib { stroke: blue; }
  79. .link.active_im { stroke: green; }
  80. .link.active_mo { stroke: red; }
  81.  
  82.  
  83. .notes .ib { color: blue; }
  84. .notes .im { color: green; }
  85. .notes .mo { color: red; }
Add Comment
Please, Sign In to add comment