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.

141 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. /*background-color:rgba(0,0,0,0.2);*/
  41. /*padding-left: 20px;*/
  42. /*padding-right:20px;*/
  43. /*border-radius:30px;*/
  44. }
  45. /* Declare heights because of positioning of img element */
  46. .carousel .item {
  47. height: 500px;
  48. background-color: #064880;
  49. }
  50. .carousel .item.dark {
  51. background-color: #06132c;
  52. }
  53. .carousel-inner > .item > img {
  54. position: absolute;
  55. top: 0;
  56. left: 0;
  57. min-width: 100%;
  58. height: 800px;
  59. }
  60. /* MARKETING CONTENT
  61. -------------------------------------------------- */
  62. /* Center align the text within the three columns below the carousel */
  63. .marketing .col-lg-3 {
  64. margin-bottom: 20px;
  65. text-align: center;
  66. }
  67. .marketing h2 {
  68. font-weight: normal;
  69. }
  70. .marketing .col-lg-3 p {
  71. margin-right: 10px;
  72. margin-left: 10px;
  73. }
  74. /* Featurettes
  75. ------------------------- */
  76. .featurette-divider {
  77. margin: 80px 0; /* Space out the Bootstrap <hr> more */
  78. border-top: 1px solid #d2d2d2;
  79. }
  80. /* Thin out the marketing headings */
  81. .featurette-heading {
  82. font-weight: 300;
  83. line-height: 1;
  84. letter-spacing: -1px;
  85. }
  86. /* RESPONSIVE CSS
  87. -------------------------------------------------- */
  88. @media (min-width: 768px) {
  89. /* Navbar positioning foo */
  90. .navbar-wrapper {
  91. margin-top: 20px;
  92. }
  93. .navbar-wrapper .container {
  94. padding-right: 15px;
  95. padding-left: 15px;
  96. }
  97. .navbar-wrapper .navbar {
  98. padding-right: 0;
  99. padding-left: 0;
  100. }
  101. /* The navbar becomes detached from the top, so we round the corners */
  102. .navbar-wrapper .navbar {
  103. border-radius: 4px;
  104. }
  105. /* Bump up size of carousel content */
  106. .carousel-caption p {
  107. margin-bottom: 20px;
  108. font-size: 21px;
  109. line-height: 1.4;
  110. }
  111. .featurette-heading {
  112. font-size: 50px;
  113. }
  114. }
  115. @media (min-width: 992px) {
  116. .featurette-heading {
  117. margin-top: 120px;
  118. }
  119. }