luke wollte den stern kleiner haben + irgendwas transparent beim login

This commit is contained in:
2020-08-03 01:05:49 +02:00
parent 7b8ee1c859
commit c08b96ec48
3 changed files with 13 additions and 6 deletions

View File

@@ -434,6 +434,11 @@ export default function tuning(globalData: IGlobalData) {
} }
function setHeadlightsColor(vehicle, index) { function setHeadlightsColor(vehicle, index) {
if (!vehicle) {
return;
}
var color = index - 2; var color = index - 2;
if (index === 0) color = -1; if (index === 0) color = -1;
if (index === 1) color = 13; if (index === 1) color = 13;

View File

@@ -58,7 +58,7 @@ main {
border-radius: .25em; border-radius: .25em;
font-size: 1em; font-size: 1em;
line-height: 1.25; line-height: 1.25;
background-color: rgba(0, 0, 0, 0.25); background-color: rgba(0, 0, 0, 0.35);
} }
main h1, main p { main h1, main p {
@@ -201,7 +201,7 @@ body.light {
} }
body.light main { body.light main {
background-color: rgba(255, 255, 255, 0.5); background-color: rgba(255, 255, 255, 0.75);
} }
body.light header { body.light header {

View File

@@ -24,16 +24,18 @@
} }
#wanteds img { #wanteds img {
width: 50px; width: 35px;
height: 50px; height: 35px;
} }
#wanteds span { #wanteds span {
margin-top: 10px; margin-top: 10px;
margin-left: 5px; margin-left: 5px;
font-size: 50px; margin-right: 15px;
font-size: 30px;
color: white; color: white;
font-family: 'Bebas Neue'; font-family: Arial, Helvetica, sans-serif;
font-weight: bolder;
} }
</style> </style>
</head> </head>