Skip to content

Commit

Permalink
Merge pull request #46 from ConsoleTVs/faster-render
Browse files Browse the repository at this point in the history
Faster render times
  • Loading branch information
ConsoleTVs authored Nov 27, 2019
2 parents 39ef01b + bc83109 commit 5e548e5
Showing 1 changed file with 65 additions and 2 deletions.
67 changes: 65 additions & 2 deletions Templates/default.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,72 @@
<head>
<meta charset="utf-8">
<title>{{ $invoice->name }}</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<style>
h1,h2,h3,h4,p,span,div { font-family: DejaVu Sans; }
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6,p,span,div {
font-family: DejaVu Sans;
font-size:10px;
font-weight: normal;
}
th,td {
font-family: DejaVu Sans;
font-size:10px;
}
.panel {
margin-bottom: 20px;
background-color: #fff;
border: 1px solid transparent;
border-radius: 4px;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.panel-default {
border-color: #ddd;
}
.panel-body {
padding: 15px;
}
table {
width: 100%;
max-width: 100%;
margin-bottom: 0px;
border-spacing: 0;
border-collapse: collapse;
background-color: transparent;
}
thead {
text-align: left;
display: table-header-group;
vertical-align: middle;
}
th, td {
border: 1px solid #ddd;
padding: 6px;
}
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}
</style>
</head>
<body>
Expand Down

0 comments on commit 5e548e5

Please sign in to comment.