mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2025-10-03 15:16:00 +00:00
55 lines
671 B
CSS
55 lines
671 B
CSS
body {
|
|
max-width: 100%;
|
|
}
|
|
|
|
html {
|
|
font-family: sans-serif;
|
|
min-width: 100%;
|
|
-webkit-text-size-adjust: 100%;
|
|
-ms-text-size-adjust: 100%;
|
|
}
|
|
|
|
footer {
|
|
background: #212529;
|
|
color: white;
|
|
padding: 3px;
|
|
padding-right: 10px;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.footer-left {
|
|
float: left;
|
|
}
|
|
|
|
.footer-right {
|
|
float: right;
|
|
}
|
|
|
|
.green-score {
|
|
color: rgb(158, 206, 106) !important;
|
|
}
|
|
|
|
.red-score {
|
|
color: rgb(247, 118, 142) !important;
|
|
}
|
|
|
|
a {
|
|
color: var(--v-theme-primary);
|
|
}
|
|
|
|
a:hover {
|
|
color: #d65d03;
|
|
}
|
|
|
|
a:visited {
|
|
color: #53514f;
|
|
}
|
|
|
|
@media (min-width: 769px) {
|
|
.v-data-table-header th,
|
|
.v-data-table__td,
|
|
.v-data-footer {
|
|
font-size: 1.2rem;
|
|
}
|
|
}
|