123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- $enable-grid-classes: true;
- $enable-cssgrid: false;
- $yellow: #fde16d;
- $enable-shadows: true;
- @import "~bootstrap/scss/bootstrap";
- body {
- padding-top:5rem;
- padding-bottom:4rem;
- }
- .form-signin {
- max-width: 430px;
- padding: 15px;
- }
- .form-signin input[type="text"] {
- margin-bottom: -1px;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
- }
- .form-signin input[type="password"] {
- margin-bottom: 10px;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- }
- .autocomplete-results {
- position: absolute;
- top: 100%;
- left: 0;
- right: 0;
- width: 100%;
- border-radius: 9px;
- border-style: solid;
- border-top: none;
- list-style-type: none;
- padding-left: 0;
- cursor: pointer;
- z-index: 99;
- background-color: var(--bs-body-bg);
- color: var(--bs-body-color);
- }
- .autocomplete-item:active, .selected {
- background-color: $primary;
- }
- #footer {
- background-color: var(--bs-body-bg);
- color: var(--bs-body-color);
- }
|