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.

33 lines
638 B

  1. // Material UI green 800
  2. $primary: #2e7d32
  3. $primaryDark: #005005
  4. $primaryLight: #60ad5e
  5. // Material UI blue 700
  6. $secondary: #1976d2
  7. $secondaryDark: #004ba0
  8. $secondaryLight: #63a4ff
  9. $error: #F7A9A1
  10. $errorDark: #B71C1C
  11. $primaryContrastText: white
  12. $background: white
  13. $text: #212121
  14. $border: #DDD
  15. $disabled: #CCC
  16. @mixin input
  17. font-size: 1rem
  18. margin: .5rem 0
  19. border-radius: .25rem
  20. border: 1px solid $border
  21. padding: calc(.75rem + 1px) 1rem
  22. box-sizing: border-box
  23. &:hover:not(:disabled), &:focus:not(:disabled)
  24. border-color: $primary
  25. &:focus
  26. padding: .75rem calc(1rem - 1px)
  27. border-width: 2px
  28. outline: none