Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
536 B

7 years ago
  1. /**
  2. * align
  3. *
  4. *
  5. *
  6. * @author Björn Hase
  7. *
  8. */
  9. @mixin crispy-boilerplate-align() {
  10. .--text-left {
  11. text-align: left;
  12. }
  13. .--text-right {
  14. text-align: right;
  15. }
  16. .--text-center {
  17. text-align: center;
  18. }
  19. .--text-justify {
  20. text-align: justify;
  21. }
  22. .--float-left {
  23. float: left;
  24. }
  25. .--float-right {
  26. float: right;
  27. }
  28. .--float-none {
  29. float: none;
  30. }
  31. .--centered {
  32. margin-left: auto;
  33. margin-right: auto;
  34. }
  35. }