app.scss 1011 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. $enable-grid-classes: true;
  2. $enable-cssgrid: false;
  3. $yellow: #fde16d;
  4. $enable-shadows: true;
  5. @import "~bootstrap/scss/bootstrap";
  6. body {
  7. padding-top:5rem;
  8. padding-bottom:4rem;
  9. }
  10. .form-signin {
  11. max-width: 430px;
  12. padding: 15px;
  13. }
  14. .form-signin input[type="text"] {
  15. margin-bottom: -1px;
  16. border-bottom-right-radius: 0;
  17. border-bottom-left-radius: 0;
  18. }
  19. .form-signin input[type="password"] {
  20. margin-bottom: 10px;
  21. border-top-left-radius: 0;
  22. border-top-right-radius: 0;
  23. }
  24. .autocomplete-results {
  25. position: absolute;
  26. top: 100%;
  27. left: 0;
  28. right: 0;
  29. width: 100%;
  30. border-radius: 9px;
  31. border-style: solid;
  32. border-top: none;
  33. list-style-type: none;
  34. padding-left: 0;
  35. cursor: pointer;
  36. z-index: 99;
  37. background-color: var(--bs-body-bg);
  38. color: var(--bs-body-color);
  39. }
  40. .autocomplete-item:active, .selected {
  41. background-color: $primary;
  42. }
  43. #footer {
  44. background-color: var(--bs-body-bg);
  45. color: var(--bs-body-color);
  46. }