_box.scss 443 B

123456789101112131415161718192021222324
  1. ///
  2. /// Paradigm Shift 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: solid 2px _palette(border);
  9. border-radius: _size(border-radius);
  10. margin-bottom: _size(element-margin);
  11. padding: 1.5rem;
  12. > :last-child {
  13. margin-bottom: 0;
  14. }
  15. &.alt {
  16. border: 0;
  17. border-radius: 0;
  18. padding: 0;
  19. }
  20. }