123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- /*
- table {
- display: flex;
- flex-flow: column;
- width: 100%;
- }
- thead {
- flex: 0 0 auto;
- }
- tbody {
- flex: 1 1 auto;
- display: block;
- overflow-y: auto;
- overflow-x: hidden;
- }
- tr {
- width: 100%;
- display: table;
- table-layout: fixed;
- }
- */
- .container {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- gap: 20px;
- }
- th {
- background: white;
- position: sticky;
- top: 0; /* Don't forget this, required for the stickiness */
- }
- th, td {
- border-inline: 1px solid black; /*Add this*/
- }
- table {
- border-collapse: collapse;
- text-align: center;
- }
- .title {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- flex-wrap: wrap;
- align-items: center;
- width: 100%;
- }
- /*
- .logout-btn{
- align-self: center;
- }
- */
- /*.btn {
- margin: 20px;
- }
- #table {
- margin: 0 20px 0 20px;
- }*/
- /*#table-img {
- margin: 0 20px 0 20px;
- }*/
- .title h1 {
- color: #5a74b7;
- margin-top: 20px;
- margin-bottom: 20px;
- font-size: 63px;
- }
- #table {
- display: flex;
- align-items: flex-start;
- flex-direction: column;
- }
- #table-img {
- display: flex;
- align-items: flex-start;
- flex-direction: column;
- }
- #table table {
- overflow-y: auto;
- max-height: 400px;
- display: block;
- width: fit-content;
- }
- #table-img table {
- overflow-y: auto;
- max-height: 300px;
- display: block;
- width: fit-content;
- }
- /*.alert {
- margin: 10px 0 10px 0;
- }*/
- .table-img {
- height: 30px;
- }
- #response-msg {
- color: red;
- }
- #loading-field {
- display: none
- }
- .loader {
- margin-inline: 5px;
- margin-bottom: -8px;
- width: 25px;
- height: 25px;
- border: 5px solid #ffffff;
- border-bottom-color: transparent;
- border-radius: 50%;
- display: inline-block;
- box-sizing: border-box;
- animation: rotation 1s linear infinite;
- }
- .row-align{
- display: flex;
- flex-direction: row;
- }
- @keyframes rotation {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
|