Skip to content

Commit

Permalink
Cleanup receipt
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints committed Jul 2, 2019
1 parent 9e72e4e commit c30353d
Showing 1 changed file with 20 additions and 13 deletions.
33 changes: 20 additions & 13 deletions resources/views/receipt.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,34 +8,36 @@

<style>
body {
background: #fff;
background-image: none;
background: #fff none;
font-size: 12px;
}
address{
margin-top:15px;
}
h2 {
font-size:28px;
color:#cccccc;
font-size: 28px;
color: #ccc;
}
.container {
padding-top:30px;
padding-top: 30px;
}
.invoice-head td {
padding: 0 8px;
}
.table th {
vertical-align: bottom;
font-weight: bold;
padding: 8px;
line-height: 20px;
text-align: left;
border-bottom: 1px solid #dddddd;
border-bottom: 1px solid #ddd;
}
.table tr.row td {
border-bottom: 1px solid #dddddd;
border-bottom: 1px solid #ddd;
}
.table td {
padding: 8px;
line-height: 20px;
Expand All @@ -46,7 +48,7 @@
</head>
<body>
<div class="container">
<table style="margin-left: auto; margin-right: auto" width="550">
<table style="margin-left: auto; margin-right: auto;" width="550">
<tr>
<td width="160">
&nbsp;
Expand All @@ -58,8 +60,8 @@
</td>
</tr>
<tr valign="top">
<td style="font-size:28px;color:#cccccc;">
Receipt
<td style="font-size: 28px; color: #ccc;">
Receipt
</td>

<!-- Organization Name / Date -->
Expand All @@ -74,18 +76,23 @@
<!-- Organization Details -->
<td style="font-size:9px;">
{{ $vendor }}<br>

@if (isset($street))
{{ $street }}<br>
@endif

@if (isset($location))
{{ $location }}<br>
@endif

@if (isset($phone))
<strong>T</strong> {{ $phone }}<br>
@endif

@if (isset($vendorVat))
{{ $vendorVat }}<br>
@endif

@if (isset($url))
<a href="{{ $url }}">{{ $url }}</a>
@endif
Expand Down

0 comments on commit c30353d

Please sign in to comment.