Closes #10. Made more use of x-large screen space for users on very large monitors.

This commit is contained in:
Craine Runton 2016-06-17 14:23:35 -06:00
parent c8252135b1
commit 3cb6849e5b
2 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@
<div class="col-xs-12 text-center bg-primary"><h3><small>Created: <span id="created_date"></span></small></h3></div> <div class="col-xs-12 text-center bg-primary"><h3><small>Created: <span id="created_date"></span></small></h3></div>
</div> </div>
<div class="row" style="margin-top: 1rem;"> <div class="row" style="margin-top: 1rem;">
<div class="col-xs-12 col-lg-10 col-lg-push-1"> <div class="col-xs-12">
<div id="panel" class="card-deck"> <div id="panel" class="card-deck">
</div> </div>
</div> </div>

View File

@ -9,10 +9,10 @@ $(function () {
}); });
var card_html = String() var card_html = String()
+'<div class="col-xs-12 col-md-6 col-xl-4">' +'<div class="col-xs-12 col-md-6 col-lg-4 col-xl-3">'
+' <div class="card text-xs-center" style="border-color:#333;">' +' <div class="card text-xs-center" style="border-color:#333;">'
+' <div class="card-header" style="overflow:hidden;">' +' <div class="card-header" style="">'
+' <h4 class="text-muted" style="margin-bottom:0;">{{server}}</h4>' +' <h4 class="text-muted" style="margin-bottom:0;padding-bottom:.25rem;;overflow:hidden;text-overflow:ellipsis;">{{server}}</h4>'
+' </div>' +' </div>'
+' <div class="card-block {{background}}">' +' <div class="card-block {{background}}">'
+' <h1 class="card-text display-4" style="margin-top:0;margin-bottom:-1rem;">{{days_left}}</h1>' +' <h1 class="card-text display-4" style="margin-top:0;margin-bottom:-1rem;">{{days_left}}</h1>'
@ -20,7 +20,7 @@ $(function () {
+' </div>' +' </div>'
+' <div class="card-footer">' +' <div class="card-footer">'
+' <h6 class="text-muted" style="margin-bottom:.5rem;">Issued by: {{issuer}}</h6>' +' <h6 class="text-muted" style="margin-bottom:.5rem;">Issued by: {{issuer}}</h6>'
+' <h6 class="text-muted" style=""><small>{{issuer_cn}}</small></h6>' +' <h6 class="text-muted" style="overflow:hidden;text-overflow:ellipsis;"><small>{{issuer_cn}}</small></h6>'
+' <h6 class="text-muted" style="margin-bottom:0;"><small>{{common_name}}</small></h6>' +' <h6 class="text-muted" style="margin-bottom:0;"><small>{{common_name}}</small></h6>'
+' </div>' +' </div>'
+' </div>' +' </div>'