_themes.scss 997 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. html,body{
  2. height: 100%;
  3. color: #0B1226;
  4. background: $white;
  5. }
  6. .p-button-primary {
  7. padding-right: $grid-gutter-width;
  8. padding-left: $grid-gutter-width;
  9. color: #F2F2F2;
  10. border-color: #1B3059;
  11. background: $primary;
  12. &:enabled:hover:focus {
  13. color: #F2F2F2;
  14. border-color: #2067BC;
  15. background: #2067BC;
  16. // this changes button size if hover/focus
  17. //@include media-breakpoint-down(xs) {
  18. // padding-right: math.div($grid-gutter-width, 2);
  19. // padding-left: math.div($grid-gutter-width, 2);
  20. // }
  21. }
  22. i {
  23. margin-right: 5px;
  24. }
  25. &.dark {
  26. border-color: #F2F2F2;
  27. background: $terciary;
  28. &:enabled :hover :focus {
  29. color: $terciary;
  30. border-color: #F2F2F2;
  31. background: #F2F2F2;
  32. }
  33. }
  34. }
  35. footer {
  36. padding: 10px 0;
  37. border-top: 1px solid $primary;
  38. text-align: center;
  39. background: #F2F2F2;
  40. p {
  41. margin: 0;
  42. }
  43. a {
  44. color: $primary;
  45. :hover :focus {
  46. color: $primary;
  47. }
  48. }
  49. }