_button.css.scss 366 B

1234567891011121314151617181920212223242526
  1. .button {
  2. &.simple {
  3. border: 0;
  4. box-shadow: none;
  5. font-weight: 100;
  6. border-radius: 3px;
  7. }
  8. &.simple-large {
  9. font-family: "Dosis", sans-serif;
  10. font-size: 24px;
  11. padding: 24px 62px;
  12. }
  13. &.simple-green {
  14. background: #5DB055;
  15. }
  16. &.simple-orange {
  17. background: #DE9525;
  18. }
  19. &.simple-dark {
  20. background: #457380;
  21. }
  22. }