common.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .login-button {
  2. justify-self: start;
  3. height: 40px;
  4. min-width: 150px;
  5. display: inline-flex;
  6. align-items: center;
  7. justify-content: center;
  8. padding: 0 12px;
  9. font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  10. font-size: 16px;
  11. font-weight: 400;
  12. color: rgb(255, 255, 255);
  13. text-align: center;
  14. text-decoration: none;
  15. vertical-align: middle;
  16. cursor: pointer;
  17. user-select: none;
  18. border: 1px solid #0d6efd;;
  19. border-radius: 6px;
  20. background-color: #0d6efd;
  21. transition: color .15s ease-in-out,
  22. background-color .15s ease-in-out,
  23. border-color .15s ease-in-out,
  24. box-shadow .15s ease-in-out;
  25. &:focus {
  26. color: #fff;
  27. background-color: #0b5ed7;
  28. border-color: #0a58ca;
  29. outline: 0;
  30. box-shadow: 0 0 0 0.25rem rgba(49,132,253,.5);
  31. }
  32. &:disabled {
  33. pointer-events: none;
  34. color: #fff;
  35. background-color: #64686e;
  36. border-color: #64686e;
  37. }
  38. }
  39. .default-button {
  40. color: black;
  41. padding: 8px 16px;
  42. border-radius: 4px;
  43. background-color: gray;
  44. &:hover {
  45. background-color: lighten(gray, 20%);
  46. }
  47. &:active {
  48. background-color: darken(gray, 1%);
  49. }
  50. }