| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- @font-face {
- font-family: Eurostile;
- src: url(../fonts/eurostile.ttf)
- }
- html {
- font-family: Eurostile, Arial, Helvetica, sans-serif;
- color: white;
- }
- body {
- background-color: #191818;
- margin: 0;
- width: 500px;
- height: 500px;
- }
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- height: 90vh;
- width: 90vw;
- margin: 5vw;
- }
- .table-container {
- width: 100%;
- overflow-y: auto;
- flex-grow: 1;
- }
- table {
- width: 100%;
- background-color: #242424;
- }
- button {
- font-family: Eurostile, Arial, Helvetica, sans-serif;
- font-size: large;
- width: 100%;
- flex-basis: 40px;
- margin-bottom: 5px;
- border-radius: 5px;
- background-color: lightcoral;
- color: black;
- }
- button:hover {
- background-color: rgb(238, 104, 104);
- cursor: pointer;
- }
- tbody>tr:hover {
- background-color: #2c2c2c;
- }
- th {
- text-align: start;
- }
|