global.scss 791 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. @import 'colors.scss';
  2. body {
  3. background-color: $light-grey;
  4. color: $dark-grey;
  5. font-family: 'Roboto',Helvetica,Arial,sans-serif;
  6. }
  7. a {
  8. color: $primary-color;
  9. text-decoration: none;
  10. }
  11. .button {
  12. &.is-success {
  13. background-color: $green !important;
  14. &:hover, &:focus {
  15. background-color: darken($green, 5%) !important;
  16. }
  17. }
  18. &.is-primary {
  19. background-color: $primary-color !important;
  20. &:hover, &:focus {
  21. background-color: darken($primary-color, 5%) !important;
  22. }
  23. }
  24. &.is-danger {
  25. background-color: $red !important;
  26. &:hover, &:focus {
  27. background-color: darken($red, 5%) !important;
  28. }
  29. }
  30. &.is-info {
  31. background-color: $blue !important;
  32. &:hover, &:focus {
  33. background-color: darken($blue, 5%) !important;
  34. }
  35. }
  36. }
  37. .center {
  38. text-align: center;
  39. }