81 lines
1.8 KiB
PHP
81 lines
1.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<title>Guarantee Letter {{ $member->name }}</title>
|
|
|
|
{{-- <link rel="stylesheet" href="{{ asset('css/app.css') }}"> --}}
|
|
|
|
<style>
|
|
/* @font-face {
|
|
font-family: Public Sans;
|
|
src: url('{{asset('fonts/PublicSans-Medium.ttf')}}');
|
|
src: url('{{asset('fonts/PublicSans-Medium.ttf')}}') format('truetype');
|
|
} */
|
|
|
|
body {
|
|
font-family: 'Public Sans';
|
|
color: #404040;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.text-sm {
|
|
font-size: 18px;
|
|
}
|
|
.text-md {
|
|
font-size: 20px;
|
|
}
|
|
.text-lg {
|
|
font-size: 22px;
|
|
}
|
|
.text-gray {
|
|
color: #919EAB;
|
|
}
|
|
|
|
#member-detail{
|
|
|
|
}
|
|
#member-detail td {
|
|
width: 50%;
|
|
padding: 10px 0px;
|
|
}
|
|
#member-detail td>div{
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.benefit-table-wrapper {
|
|
border: 1px solid #E0E0E0;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
}
|
|
#benefit-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
#benefit-table th, #benefit-table th {
|
|
width: 50%;
|
|
}
|
|
|
|
#benefit-table th{
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
padding: 15px;
|
|
text-align: left;
|
|
}
|
|
|
|
#benefit-table tr:first-child {
|
|
background: #F5F5F5;
|
|
border-bottom: 1px solid #E0E0E0;
|
|
}
|
|
|
|
#benefit-table td {
|
|
padding: 15px;
|
|
font-size: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Hi {{ $member->name }} </h1>
|
|
</body>
|
|
</html> |