Blog-style website for karathan using the self-made Stellar Theme powered by HTML5Up http://blog.karathan.at

_row.scss 627B

12345678910111213141516171819202122232425262728293031
  1. ///
  2. /// Stellar 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. /* Row */
  7. .row {
  8. @include html-grid(1.5em);
  9. @include breakpoint('<=xlarge') {
  10. @include html-grid(1.5em, 'xlarge');
  11. }
  12. @include breakpoint('<=large') {
  13. @include html-grid(1.5em, 'large');
  14. }
  15. @include breakpoint('<=medium') {
  16. @include html-grid(1.5em, 'medium');
  17. }
  18. @include breakpoint('<=small') {
  19. @include html-grid(1em, 'small');
  20. }
  21. @include breakpoint('<=xsmall') {
  22. @include html-grid(1.25em, 'xsmall');
  23. }
  24. }