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

_box.scss 631B

12345678910111213141516171819202122232425262728293031323334
  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. /* Box */
  7. .box {
  8. border-radius: _size(border-radius);
  9. border: solid _size(border-width);
  10. margin-bottom: _size(element-margin);
  11. padding: 1.5em;
  12. > :last-child,
  13. > :last-child > :last-child,
  14. > :last-child > :last-child > :last-child {
  15. margin-bottom: 0;
  16. }
  17. &.alt {
  18. border: 0;
  19. border-radius: 0;
  20. padding: 0;
  21. }
  22. }
  23. @mixin color-box($p: null) {
  24. .box {
  25. border-color: _palette($p, border);
  26. }
  27. }
  28. @include color-box;