| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- @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%;
- }
- .v-container {
- overflow: hidden;
- }
- .table-row {
- background-color: white;
- text-align: center;
- height: 3rem;
- }
- .table-data-left {
- text-align: left;
- }
- .center-90 {
- width: 90%;
- max-width: 1600px;
- margin-right: auto;
- margin-left: auto;
- @media (max-width: 600px) {
- width: 96%;
- }
- }
- .v-row.center-90 {
- margin: -12px auto;
- }
- * {
- text-align: justify;
- }
|