diff --git a/ReallifeGamemode.Client/Tuning/main.ts b/ReallifeGamemode.Client/Tuning/main.ts index 055f8ffc..aae203e1 100644 --- a/ReallifeGamemode.Client/Tuning/main.ts +++ b/ReallifeGamemode.Client/Tuning/main.ts @@ -434,6 +434,11 @@ export default function tuning(globalData: IGlobalData) { } function setHeadlightsColor(vehicle, index) { + + if (!vehicle) { + return; + } + var color = index - 2; if (index === 0) color = -1; if (index === 1) color = 13; diff --git a/ReallifeGamemode.Client/assets/css/login/styles.css b/ReallifeGamemode.Client/assets/css/login/styles.css index 348cf205..7b79e3a8 100644 --- a/ReallifeGamemode.Client/assets/css/login/styles.css +++ b/ReallifeGamemode.Client/assets/css/login/styles.css @@ -58,7 +58,7 @@ main { border-radius: .25em; font-size: 1em; line-height: 1.25; - background-color: rgba(0, 0, 0, 0.25); + background-color: rgba(0, 0, 0, 0.35); } main h1, main p { @@ -201,7 +201,7 @@ body.light { } body.light main { - background-color: rgba(255, 255, 255, 0.5); + background-color: rgba(255, 255, 255, 0.75); } body.light header { diff --git a/ReallifeGamemode.Client/assets/html/wanteds/index.html b/ReallifeGamemode.Client/assets/html/wanteds/index.html index efd9d562..daa39cc0 100644 --- a/ReallifeGamemode.Client/assets/html/wanteds/index.html +++ b/ReallifeGamemode.Client/assets/html/wanteds/index.html @@ -24,16 +24,18 @@ } #wanteds img { - width: 50px; - height: 50px; + width: 35px; + height: 35px; } #wanteds span { margin-top: 10px; margin-left: 5px; - font-size: 50px; + margin-right: 15px; + font-size: 30px; color: white; - font-family: 'Bebas Neue'; + font-family: Arial, Helvetica, sans-serif; + font-weight: bolder; }