| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- // Fonts
- //@import url('https://fonts.bunny.net/css?family=Nunito');
- // Variables
- @import 'variables';
- // Bootstrap
- @import 'bootstrap/scss/bootstrap';
- @import "bootstrap-icons/font/bootstrap-icons.css";
- .invalid-feedback {
- display: block !important;
- }
- .alerts{
- position: absolute;
- right: 0;
- top: 0;
- opacity: 0.95;
- z-index: 999;
- div {
- padding-left: 3rem;
- padding-right: 3rem;
- }
- }
- .table-buttons {
- position: fixed;
- right: 0;
- opacity: 0.5;
- z-index: 999;
- }
- .table-buttons:hover {
- opacity: 1;
- }
- .table {
- tr th {
- background-color: #0dcaf0;
- vertical-align: middle;
- }
- tr:nth-child(even) td {
- background-color: #e5e5e5;
- }
- td {
- cursor: pointer;
- }
- }
- .maf:hover, tr:hover td {
- background-color: #fff8ca;
- }
- .quantity {
- padding: 3px;
- }
- .pagination .text-muted {
- padding-right: 1rem;
- }
- .cursor-pointer {
- cursor: pointer;
- }
- .highlight {
- background-color: yellow;
- }
|