Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. @import './colours';
  2. @import './variables';
  3.  
  4. .page-not-found {
  5. h1 {
  6. font-size: 5em;
  7. text-align: center;
  8. }
  9.  
  10. h2 {
  11. @include margin($bottom: 4rem);
  12. color: base('04');
  13. font-size: 3em;
  14. text-align: center;
  15. }
  16.  
  17. @media (max-width: $max-width) {
  18. @each $level, $size in ('h1': 3em, 'h2': 2em) {
  19. h#{$level} {
  20. font-size: $size;
  21. }
  22. }
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement