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.

143 lines
2.8 KiB

  1. /* GLOBAL STYLES
  2. -------------------------------------------------- */
  3. /* Padding below the footer and lighter body text */
  4. body {
  5. padding-bottom: 40px;
  6. color: #5a5a5a;
  7. }
  8. /* CUSTOMIZE THE NAVBAR
  9. -------------------------------------------------- */
  10. /* Special class on .container surrounding .navbar, used for positioning it into place. */
  11. .navbar-wrapper {
  12. position: absolute;
  13. top: 0;
  14. right: 0;
  15. left: 0;
  16. z-index: 20;
  17. }
  18. /* Flip around the padding for proper display in narrow viewports */
  19. .navbar-wrapper > .container {
  20. padding-right: 0;
  21. padding-left: 0;
  22. }
  23. .navbar-wrapper .navbar {
  24. padding-right: 15px;
  25. padding-left: 15px;
  26. }
  27. .navbar-wrapper .navbar .container {
  28. width: auto;
  29. }
  30. /* CUSTOMIZE THE CAROUSEL
  31. -------------------------------------------------- */
  32. /* Carousel base class */
  33. .carousel {
  34. height: 500px;
  35. margin-bottom: 60px;
  36. }
  37. /* Since positioning the image, we need to help out the caption */
  38. .carousel-caption {
  39. z-index: 10;
  40. text-shadow:
  41. -0px -0px 3px #000,
  42. -2px -2px 0 #000,
  43. 2px -2px 0 #000,
  44. -2px 2px 0 #000,
  45. 2px 2px 0 #000;
  46. }
  47. /* Declare heights because of positioning of img element */
  48. .carousel .item {
  49. height: 500px;
  50. background-color: #064880;
  51. }
  52. .carousel .item.dark {
  53. background-color: #06132c;
  54. }
  55. .carousel-inner > .item > img {
  56. position: absolute;
  57. top: 0;
  58. left: 0;
  59. min-width: 100%;
  60. height: 500px;
  61. }
  62. /* MARKETING CONTENT
  63. -------------------------------------------------- */
  64. /* Center align the text within the three columns below the carousel */
  65. .marketing .col-lg-3 {
  66. margin-bottom: 20px;
  67. text-align: center;
  68. }
  69. .marketing h2 {
  70. font-weight: normal;
  71. }
  72. .marketing .col-lg-3 p {
  73. margin-right: 10px;
  74. margin-left: 10px;
  75. }
  76. /* Featurettes
  77. ------------------------- */
  78. .featurette-divider {
  79. margin: 80px 0; /* Space out the Bootstrap <hr> more */
  80. border-top: 1px solid #d2d2d2;
  81. }
  82. /* Thin out the marketing headings */
  83. .featurette-heading {
  84. font-weight: 300;
  85. line-height: 1;
  86. letter-spacing: -1px;
  87. }
  88. /* RESPONSIVE CSS
  89. -------------------------------------------------- */
  90. @media (min-width: 768px) {
  91. /* Navbar positioning foo */
  92. .navbar-wrapper {
  93. margin-top: 20px;
  94. }
  95. .navbar-wrapper .container {
  96. padding-right: 15px;
  97. padding-left: 15px;
  98. }
  99. .navbar-wrapper .navbar {
  100. padding-right: 0;
  101. padding-left: 0;
  102. }
  103. /* The navbar becomes detached from the top, so we round the corners */
  104. .navbar-wrapper .navbar {
  105. border-radius: 4px;
  106. }
  107. /* Bump up size of carousel content */
  108. .carousel-caption p {
  109. margin-bottom: 20px;
  110. font-size: 21px;
  111. line-height: 1.4;
  112. }
  113. .featurette-heading {
  114. font-size: 50px;
  115. }
  116. }
  117. @media (min-width: 992px) {
  118. .featurette-heading {
  119. margin-top: 120px;
  120. }
  121. }