123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- :root {
- --background-color: #55C9F6;
- --light-background-color:#CAE3FB;
- --text-color: black;
- --accent-color: #29A5F2;
- }
- ::-webkit-scrollbar {
- width: 5px;
- height: 5px;
- }
- ::-webkit-scrollbar-button {
- width: 0px;
- height: 0px;
- }
- ::-webkit-scrollbar-thumb {
- background: var(--text-color);
- border: none;
- border-radius: 0px;
- }
- ::-webkit-scrollbar-thumb:hover {
- background: var(--text-color);
- }
- ::-webkit-scrollbar-thumb:active {
- background: var(--text-color);
- }
- ::-webkit-scrollbar-track {
- background: rgba(0,0,0,0);
- border: none;
- border-radius: 0px;
- }
- ::-webkit-scrollbar-track:hover {
- background: rgba(0,0,0,0);
- }
- ::-webkit-scrollbar-track:active {
- background: rgba(0,0,0,0);
- }
- ::-webkit-scrollbar-corner {
- background: rgba(0,0,0,0);
- }
- *{
- transition-duration: 0.5s;
- scrollbar-color: var(--text-color) rgba(0,0,0,0) !important;
- scrollbar-width: thin !important;
- }
- a {
- color: var(--accent-color);
- }
- a:hover {
- opacity: 0.5;
- }
- body {
- background: var(--background-color);
- color: var(--text-color);
- font-family: 'Fira Sans', sans-serif;
- position: fixed;
- margin: 0;
- padding: 0;
- height: 100%;
- width: 100%;
- }
- body {
- height: 100%;
- width: 100%;
- margin: 0;
- padding: 0;
- display: flex;
- flex-flow: column;
- justify-content: center;
- align-items: center;
- overflow: auto;
- }
- body>div {
- max-width: 900px;
- background: var(--light-background-color);
- padding: 20px;
- border-radius: 10px;
- overflow: auto;
- }
- input {
- border: none;
- border-bottom: white solid 2px;
- background: rgba(255, 255, 255, 0.3);
- width: 100%;
- outline: none;
- font-size: 15px;
- padding: 5px;
- }
- input:hover {
- background: rgba(255, 255, 255, 0.5);
- }
- input:focus {
- border: none;
- border-bottom: var(--accent-color) solid 2px;
- background: rgba(255, 255, 255, 0.9);
- }
- #logo {
- float: right;
- width: 100%;
- max-width: 80px;
- border-radius: 80px;
- overflow: hidden;
- }
- .tableContainer {
- overflow-x: auto;
- overflow-y: hidden;
- display: flex;
- flex-wrap: wrap;
- background: white;
- margin: 5px;
- border-radius: 5px;
- border: 2px solid var(--accent-color);
- }
- .tableContainer table {
- width: 100%;
- border-collapse: collapse;
- border-spacing: 0;
- }
- .tableContainer table td,
- .tableContainer table th {
- border: 1px solid var(--accent-color);
- padding: 10px;
- vertical-align: baseline;
- white-space: nowrap;
- }
- .tableContainer table thead {
- font-weight: 700;
- }
- .tableContainer table tbody tr {
- border: 1px solid var(--accent-color);
- transition: background ease-in-out 0.2s;
- }
- .tableContainer table tbody tr:nth-child(even) {
- background: #eeeeee;
- transition: background ease-in-out 0.2s;
- }
- .tableContainer table tbody tr:hover,
- .tableContainer table tbody tr:focus {
- background: #eeeeee;
- transition: background ease-in-out 0.2s;
- }
- .errors {
- margin: 10px auto 0 auto;
- color: white;
- padding: 10px;
- border-radius: 5px;
- background: red;
- max-width: 480px;
- }
- .errors strong {
- font-size: 18px;
- }
- .errors p {
- margin: 0;
- font-size: 16px;
- }
- .delete {
- margin: 0;
- }
|