summaryrefslogtreecommitdiff
path: root/style.scss
blob: 759ae4d16be7b1c6a185e8d7cb4b462082543192 (plain)
  1. @import "bootstrap-compass";
  2. @import "partials/base";
  3. @import "bootstrap";
  4. // padding needed with fixed navbar
  5. body {
  6. padding-top: 70px;
  7. }
  8. .jumbotron {
  9. background-color: $color-jumbotron;
  10. }
  11. .well {
  12. background-color: $color-well;
  13. .btn-primary {
  14. background-color: $color-well-button;
  15. }
  16. }
  17. // fill width and height - with black edges as needed
  18. .videocontainer {
  19. position: absolute;
  20. top: 0;
  21. left: 0;
  22. width: 100%;
  23. height: 100%;
  24. background-color: #000;
  25. z-index: 999;
  26. }
  27. video {
  28. display: block;
  29. width: 100%;
  30. height: 100%;
  31. }