vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

93 lines
1.8 KiB

  1. body {
  2. font-family: Lustria,Georgia,Times,"Times New Roman",serif !important;
  3. background: url('../images/crossword.png') /* Background pattern from subtlepatterns.com */
  4. }
  5. div.contentWrapper {
  6. padding:10px;
  7. }
  8. div.navbar-wrapper {
  9. background-color:#07508E;
  10. border-bottom: 3px solid #ffffff;
  11. font-size:16px;
  12. }
  13. pre {
  14. width:450px;
  15. height:552px;
  16. overflow:auto;
  17. }
  18. #visualization {
  19. display:block;
  20. margin-left:470px;
  21. margin-top:-562px;
  22. width:500px;
  23. height:552px;
  24. border: 1px solid #dddddd;
  25. border-radius:4px;
  26. background-color:#fcfcfc;
  27. }
  28. div.textHTMLContent {
  29. margin-top:10px;
  30. margin-bottom:10px;
  31. display:block;
  32. width:800px;
  33. }
  34. img.example {
  35. border:1px solid #dddddd;
  36. width:250px;
  37. height:250px;
  38. border-radius:10px;
  39. margin-top:10px;
  40. }
  41. img.timeline_example {
  42. border: 1px solid #dddddd;
  43. border-radius: 10px;
  44. margin-top: 10px;
  45. max-height: 150px;
  46. width: 100%;
  47. max-width: 250px;
  48. }
  49. div.exampleTitle {
  50. position:relative;
  51. top:-7px;
  52. width:100%;
  53. max-width:250px;
  54. height:30px;
  55. border: 1px solid #dddddd;
  56. background-color: #526b84;
  57. color:#ffffff;
  58. text-align:center;
  59. vertical-align:middle;
  60. line-height: 30px;
  61. border-bottom-left-radius:5px;
  62. border-bottom-right-radius:5px;
  63. }
  64. a.exampleLink:before {
  65. content:'';
  66. display:inline-block;
  67. margin-left:15px;
  68. margin-right:5px;
  69. width: 2px;
  70. height: 2px;
  71. border-radius: 50%;
  72. border:3px solid rgb(46, 109, 164);
  73. }
  74. a.exampleLink {
  75. padding:15px;
  76. display:inline-block;
  77. text-decoration: underline;
  78. -webkit-touch-callout: none;
  79. -webkit-user-select: none;
  80. -khtml-user-select: none;
  81. -moz-user-select: none;
  82. -ms-user-select: none;
  83. user-select: none;
  84. }