@@ -310,7 +310,7 @@ const vehicles = {
310
310
<li ><a href =" #lua-no-plate" >Vehicles without number plates</a ></li >
311
311
<li ><a href =" #lua-3-colors" >Vehicles that support up to 3 different colors</a ></li >
312
312
<li ><a href =" #lua-no-siren" >Vehicles that don't support siren lights</a ></li >
313
- <li ><a href =" #lua-no-engine" >Vehicles without engines </a ></li >
313
+ <li ><a href =" #lua-no-engine" >Vehicles that don't have an engine </a ></li >
314
314
<li ><a href =" #lua-2-doors" >Vehicles with 2 physically enterable doors</a ></li >
315
315
<li ><a href =" #lua-4-doors" >Vehicles with 4 physically enterable doors</a ></li >
316
316
</ul >
@@ -323,7 +323,7 @@ const vehicles = {
323
323
<a target =" _blank" href ={ ` http://gta.rockstarvision.com/vehicleviewer/#sa ` } >
324
324
Preview Image
325
325
</a >
326
- <div class =" vehicle-details" ><code >ID</code > <code >Model Name</code ></div >
326
+ <div class =" vehicle-details" ><code >ID</code >< br > <code >Model Name</code ></div >
327
327
</div >
328
328
</div >
329
329
@@ -353,7 +353,7 @@ const vehicles = {
353
353
class = " vehicle-image"
354
354
/>
355
355
</a >
356
- <div class = " vehicle-details" ><code >{ vehicle .id } </code > <code >{ vehicle .modelName } </code ></div >
356
+ <div class = " vehicle-details" ><code >{ vehicle .id } </code >< br > <code >{ vehicle .modelName } </code ></div >
357
357
</div >
358
358
))}
359
359
</div >
@@ -364,9 +364,10 @@ const vehicles = {
364
364
))}
365
365
366
366
<section data-pagefind-ignore >
367
+ <h5 >Lua tables:</h5 >
367
368
368
369
<details id = " lua-all" >
369
- <summary >Lua table of all the valid vehicle IDs listed on this page</summary >
370
+ <summary >All valid vehicle IDs listed on this page</summary >
370
371
<Code lang = " lua" code = { `
371
372
vehicleIds = {
372
373
400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415,
@@ -385,7 +386,7 @@ vehicleIds = {
385
386
</details >
386
387
387
388
<details id = " lua-names" >
388
- <summary >Lua table of all vehicle names</summary >
389
+ <summary >All vehicle names</summary >
389
390
<Code lang = " lua" code = { `
390
391
-- (when indexing just do a <vehicle model id you want the name of> - 399 to get the name)
391
392
vehicleNames = {
@@ -412,7 +413,7 @@ vehicleNames = {
412
413
</details >
413
414
414
415
<details id = " lua-model-names" >
415
- <summary >Lua table of all vehicle model names</summary >
416
+ <summary >All vehicle model names</summary >
416
417
<Code lang = " lua" code = { `
417
418
-- (when indexing just do a <vehicle model id you want the name of> - 399 to get the model name)
418
419
vehicleModelNames {
@@ -421,7 +422,7 @@ vehicleModelNames {
421
422
</details >
422
423
423
424
<details id = " lua-no-lock" >
424
- <summary >Lua table of vehicles that are not lockable</summary >
425
+ <summary >Vehicles that are not lockable</summary >
425
426
<Code lang = " lua" code = { `
426
427
nonLockableVehicles = {
427
428
594, 606, 607, 611, 584, 608, 435, 450, 591, 539, 441, 464, 501, 465, 564, 472, 473, 493, 595, 484, 430, 453, 452, 446, 454, 581, 509, 481,
@@ -430,7 +431,7 @@ nonLockableVehicles = {
430
431
</details >
431
432
432
433
<details id = " lua-no-plate" >
433
- <summary >Lua table of vehicles that do not have number plates</summary >
434
+ <summary >Vehicles that do not have number plates</summary >
434
435
<Code lang = " lua" code = { `
435
436
noNumberPlates = {
436
437
592, 553, 577, 488, 511, 497, 548, 563, 512, 476, 593, 447, 425, 519, 520, 460, 417, 469, 487, 513, 509, 481, 510, 472, 473, 493, 595, 484,
@@ -439,15 +440,15 @@ noNumberPlates = {
439
440
</details >
440
441
441
442
<details id = " lua-3-colors" >
442
- <summary >Lua table of vehicles that support up to 3 different colors</summary >
443
+ <summary >Vehicles that support up to 3 different colors</summary >
443
444
<Code lang = " lua" code = { `
444
445
maxColorVehicles = {
445
446
483, 524, 446
446
447
} ` } />
447
448
</details >
448
449
449
450
<details id = " lua-no-siren" >
450
- <summary >Lua table of vehicles that do not support siren lights</summary >
451
+ <summary >Vehicles that do not support siren lights</summary >
451
452
<Code lang = " lua" code = { `
452
453
noSirenLights = {
453
454
400, 401, 402, 403, 404, 405, 406, 417, 420, 423, 425, 430, 432, 433, 435, 438, 441, 446, 447, 448, 452, 453, 454, 460, 461, 462, 463, 464,
@@ -457,15 +458,15 @@ noSirenLights = {
457
458
</details >
458
459
459
460
<details id = " lua-no-engine" >
460
- <summary >Lua table of vehicles that do not have engines </summary >
461
+ <summary >Vehicles that do not have an engine </summary >
461
462
<Code lang = " lua" code = { `
462
463
noEngineVehicles = { -- such as bicycles and trailers
463
464
481, 509, 510, 606, 607, 608, 610, 611, 435, 450, 584, 591, 590, 569, 570, 594
464
465
} ` } />
465
466
</details >
466
467
467
468
<details id = " lua-2-doors" >
468
- <summary >Lua table of vehicles with 2 physically enterable doors</summary >
469
+ <summary >Vehicles with 2 physically enterable doors</summary >
469
470
<Code lang = " lua" code = { `
470
471
twoDoorVehicles = { -- boats and bikes not included
471
472
592, 577, 511, 512, 593, 460, 548, 417, 488, 563, 447, 469,
@@ -484,7 +485,7 @@ twoDoorVehicles = { -- boats and bikes not included
484
485
</details >
485
486
486
487
<details id = " lua-4-doors" >
487
- <summary >Lua table of vehicles with 4 physically enterable doors</summary >
488
+ <summary >Vehicles with 4 physically enterable doors</summary >
488
489
<Code lang = " lua" code = { `
489
490
fourDoorVehicles = { -- boats and bikes not included
490
491
487, 497,
@@ -534,11 +535,13 @@ fourDoorVehicles = { -- boats and bikes not included
534
535
text - align : center ;
535
536
}
536
537
@media (max-width: 600px) {
538
+ /* Align the list items */
537
539
.vehicle - list {
538
540
justify-content: center ;
539
541
}
542
+ /* Align the titles */
540
543
.vehicle - category - title ,
541
- .vehicle-othercategory-title ,
544
+ .vehicle - category - othertitle ,
542
545
.vehicle - subcategory - title {
543
546
text-align: center ;
544
547
}
@@ -550,8 +553,11 @@ fourDoorVehicles = { -- boats and bikes not included
550
553
padding : 0.2rem ;
551
554
margin : 0 ;
552
555
border : 1px solid var (-- sl - color - gray - 4 );
553
- width: 140px;
554
- font-size: 0.9rem;
556
+ width : 100px ;
557
+ font - size : 0.7rem ;
558
+ }
559
+ .vehicle-item code {
560
+ font - size : 0.7rem ;
555
561
}
556
562
.vehicle-item .vehicle-title {
557
563
margin - bottom : 1rem ;
@@ -560,7 +566,7 @@ fourDoorVehicles = { -- boats and bikes not included
560
566
margin - top : 1rem ;
561
567
}
562
568
.vehicle-item .vehicle-image {
563
- width: 64px ;
569
+ width : 90 px ;
564
570
height : 32px ;
565
571
object - fit : contain ;
566
572
margin : 0 auto ;
0 commit comments