I am creating a site using Bootstrap 3.1.1. The body tag has a min-width of 800px.
The data I am attempting to display needs to appear in a grid. It's a representation of a parking lot.
Here is a screenshot of what I am trying to achieve (at least for right now). This is how the data appears when my window is larger than a certain point (I am not sure what width my browser is at when it works/doesn't).
and this is (a portion) of what happens when the windows is too small:

Part of the reason this is a fixed width site in the first place is because I need to display this. How can I use bootstrap for it's grid layout, but keep the columns from wrapping?
Here's how I am trying to group the data:
<div class="row" style="width:100%;">
<div class="col-xs-1"> <!-- a single row, e.g. 392-337 -->
<div class="col-xs-6 pull-left"> <!-- the numbers on the left hand side, 392-365 -->
<div class="col-xs-12">
392
</div><div class="col-xs-12">
391
</div><div class="col-xs-12">
390
</div><div class="col-xs-12">
389
</div><div class="col-xs-12">
388
</div><div class="col-xs-12">
387
</div><div class="col-xs-12">
386
</div><div class="col-xs-12">
385
</div><div class="col-xs-12">
384
</div><div class="col-xs-12">
383
</div>
</div><div class="col-xs-6 pull-right"> <!-- numbers on the right hand side, 364-337 -->
<div class="col-xs-12">
364
</div><div class="col-xs-12">
363
</div><div class="col-xs-12">
362
</div><div class="col-xs-12">
361
</div><div class="col-xs-12">
360
</div><div class="col-xs-12">
359
</div><div class="col-xs-12">
358
</div><div class="col-xs-12">
357
</div><div class="col-xs-12">
356
</div><div class="col-xs-12">
355
</div>
</div>
</div>
</div>