| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- body {
- min-height: 100dvh;
- margin: 0;
- display: flex;
- flex-direction: column;
- padding-inline: 10%;
- font-family: sans-serif;
- line-height: 1.3;
- font-size: 1.2em;
- }
- #mainStats {
- display: flex;
- flex-direction: column;
- gap: 1em;
- margin: auto;
- justify-content: center;
- align-items: center;
- padding: 1em;
- }
- .message {
- padding: 0.5em 1em;
- border-radius: 1em;
- font-size: 1.1em;
- background-color: rgba(50, 50, 50, 0.3);
- border: 2px solid rgb(50, 50, 50);
- color: rgb(50, 50, 50);
- }
- .message.error {
- background-color: rgba(255, 50, 50, 0.3);
- border: 2px solid rgb(255, 50, 50);
- color: rgb(255, 50, 50);
- }
- .message.info {
- background-color: rgba(50, 50, 255, 0.3);
- border: 2px solid rgb(50, 50, 255);
- color: rgb(50, 50, 255);
- }
- .message.success {
- background-color: rgba(50, 200, 50, 0.3);
- border: 2px solid rgb(50, 200, 50);
- color: rgb(50, 200, 50);
- }
- #mainStats .stats {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- align-items: stretch;
- gap: 1em 5em;
- }
- #mainStats .stats .wrapper {
- display: flex;
- gap: 1em;
- flex-direction: column;
- }
- #mainStats .stats .values {
- background-color: rgba(0, 0, 0, 0.1);
- padding: 0.5em 1em;
- border-radius: 1em;
- width: 10em;
- flex: 1;
- font-size: 1.2em;
- }
- p {
- display: flex;
- align-items: center;
- gap: 0.5em;
- }
- header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- flex-wrap: wrap;
- gap: 0 1em;
- }
- header > * {
- margin-inline: auto;
- }
- .icon {
- display: inline-block;
- width: 1em;
- height: 1em;
- }
- header .end {
- font-size: 1.3em;
- display: flex;
- gap: 1em;
- align-items: center;
- justify-content: center;
- flex-wrap: wrap;
- }
- input, button {
- font-size: 1em;
- }
- [role="button"], button {
- background-color: rgba(0, 0, 0, 0.1);
- border-radius: 0.5em;
- padding: 0.5em 1em;
- text-decoration: none;
- color: initial;
- border: none;
- width: max-content;
- cursor: pointer;
- display: flex;
- align-items: center;
- gap: 0.5em;
- }
- input {
- background-color: rgba(0, 0, 0, 0.1);
- border-radius: 0.5em;
- padding: 0.3em 1em;
- border: 2px solid rgba(0, 0, 0);
- }
- form {
- display: flex;
- flex-direction: column;
- gap: 1em;
- }
|