_intro.scss 615 B

123456789101112131415161718192021222324252627282930313233
  1. ///
  2. /// Hyperspace by HTML5 UP
  3. /// html5up.net | @ajlkn
  4. /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
  5. ///
  6. /* Intro */
  7. #intro {
  8. background-attachment: fixed;
  9. background-image: url('images/intro.svg');
  10. background-position: top right;
  11. background-repeat: no-repeat;
  12. background-size: 100% 100%;
  13. p {
  14. font-size: 1.25em;
  15. @include breakpoint(medium) {
  16. br {
  17. display: none;
  18. }
  19. }
  20. @include breakpoint(small) {
  21. font-size: 1em;
  22. }
  23. }
  24. @include breakpoint(large) {
  25. background-attachment: scroll;
  26. }
  27. }