summaryrefslogtreecommitdiff
path: root/style.scss
blob: 932d65dd88e0f3effe5205b4063b3a789a5693fa (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. border: $color-well-button;
  16. }
  17. }
  18. // fill width and height - with black edges as needed
  19. .videocontainer {
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. width: 100%;
  24. height: 100%;
  25. background-color: #000;
  26. z-index: 999;
  27. }
  28. video {
  29. display: block;
  30. width: 100%;
  31. height: 100%;
  32. }
  33. // Hide eye field except when human checkbox enabled
  34. .eye {
  35. opacity: 0;
  36. }
  37. #human:checked ~ .eye {
  38. opacity: 100;
  39. }
  40. table {
  41. @extend .table, .table-striped;
  42. }