| 123456789101112131415161718192021222324252627282930313233 |
- @import url('https://fonts.googleapis.com/css2?family=Barlow:wght@500;700&display=swap');
- body {
- font-family: "Barlow", serif;
- font-style: normal;
- --banner-center-image: 20%;
- }
- .table-row {
- background-color: white;
- text-align: center;
- height: 3rem;
- }
- .table-data-left {
- text-align: left;
- }
- .center-90 {
- width: 90%;
- margin-right: auto;
- margin-left: auto;
- @media (max-width: 600px) {
- width: 96%;
- }
- }
- .v-row.center-90 {
- margin: -12px auto;
- }
|