| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- body {
- min-height: 100dvh;
- margin: 0;
- display: flex;
- flex-direction: column;
- font-size: 1.2rem;
- padding-inline: 10%;
- font-family: sans-serif;
- }
- #mainStats {
- display: flex;
- flex-direction: column;
- gap: 1em;
- margin: auto;
- justify-content: center;
- align-items: center;
- padding-inline: 1rem;
- }
- #mainStats > .message {
- background-color: lightcoral;
- border: 2px solid red;
- padding: 0.5rem 2rem;
- border-radius: 1rem;
- }
- #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: #dddddd;
- padding: 0.5rem 2rem;
- border-radius: 1rem;
- 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;
- }
|