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.

77 lines
1.0 KiB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
  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: 700px;
  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 #a0c0f0;
  31. color: #2B7CE9;
  32. }
  33. h3 {
  34. font-size: 140%;
  35. }
  36. a > img {
  37. border: none;
  38. }
  39. a {
  40. color: #2B7CE9;
  41. text-decoration: none;
  42. }
  43. a:visited {
  44. color: #2E60A4;
  45. }
  46. a:hover {
  47. color: red;
  48. text-decoration: underline;
  49. }
  50. table {
  51. border-collapse: collapse;
  52. }
  53. th {
  54. font-weight: bold;
  55. border: 1px solid lightgray;
  56. background-color: #E5E5E5;
  57. text-align: left;
  58. vertical-align: top;
  59. padding: 5px;
  60. }
  61. td {
  62. border: 1px solid lightgray;
  63. padding: 5px;
  64. vertical-align: top;
  65. }