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.

82 lines
1.0 KiB

  1. html, body {
  2. width: 100%;
  3. height: 100%;
  4. padding: 0;
  5. margin: 0;
  6. }
  7. body, td, th {
  8. font-family: arial, sans-serif;
  9. font-size: 11pt;
  10. color: #4D4D4D;
  11. line-height: 1.7em;
  12. }
  13. #container {
  14. position: relative;
  15. margin: 0 auto;
  16. padding: 10px 10px 50px 10px;
  17. width: 970px;
  18. max-width: 100%;
  19. box-sizing: border-box;
  20. }
  21. h1 {
  22. font-size: 180%;
  23. font-weight: bold;
  24. padding: 0;
  25. margin: 1em 0 1em 0;
  26. }
  27. h2 {
  28. padding-top: 20px;
  29. padding-bottom: 10px;
  30. border-bottom: 1px solid #e0e0e0;
  31. color: #064880;
  32. }
  33. h3 {
  34. font-size: 140%;
  35. }
  36. a > img {
  37. border: none;
  38. }
  39. a {
  40. color: #064880;
  41. text-decoration: none;
  42. }
  43. a:visited {
  44. color: #064880;
  45. text-decoration: none;
  46. }
  47. a:hover {
  48. color: red;
  49. text-decoration: underline;
  50. }
  51. table {
  52. border-collapse: collapse;
  53. }
  54. th {
  55. font-weight: bold;
  56. border: 1px solid lightgray;
  57. background-color: #E5E5E5;
  58. text-align: left;
  59. vertical-align: top;
  60. padding: 5px;
  61. }
  62. td {
  63. border: 1px solid lightgray;
  64. padding: 5px;
  65. vertical-align: top;
  66. }
  67. p.important_note {
  68. color: #3a6baa;
  69. font-weight:bold;
  70. }