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.

84 lines
1.6 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. div.exampleTitle {
  42. position:relative;
  43. top:-7px;
  44. width:100%;
  45. max-width:250px;
  46. height:30px;
  47. border: 1px solid #dddddd;
  48. background-color: #526b84;
  49. color:#ffffff;
  50. text-align:center;
  51. vertical-align:middle;
  52. line-height: 30px;
  53. border-bottom-left-radius:5px;
  54. border-bottom-right-radius:5px;
  55. }
  56. a.exampleLink:before {
  57. content:'';
  58. display:inline-block;
  59. margin-left:15px;
  60. margin-right:5px;
  61. width: 2px;
  62. height: 2px;
  63. border-radius: 50%;
  64. border:3px solid rgb(46, 109, 164);
  65. }
  66. a.exampleLink {
  67. padding:15px;
  68. display:inline-block;
  69. text-decoration: underline;
  70. -webkit-touch-callout: none;
  71. -webkit-user-select: none;
  72. -khtml-user-select: none;
  73. -moz-user-select: none;
  74. -ms-user-select: none;
  75. user-select: none;
  76. }