radfusion/resources/views/content/pages/notice.blade.php

43 lines
1.1 KiB
PHP

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@400..600&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
crossorigin="anonymous">
<title>{{ $title }}</title>
<style>
body {
margin-top: 60px;
font-family: "Rubik", serif;
font-optical-sizing: auto;
font-weight: 400;
}
.alert-coupon {
border: 1px dashed;
h1, h2, h3, h4, h5, h6 {
font-size: 20px;
line-height: 1.6;
text-align: center;
font-weight: 600;
}
p:last-child {
margin-bottom: 0;
}
}
</style>
</head>
<body>
<div class="container">
<div class="row">
@include('content.pages.partials._alert-div', compact('color', 'heading', 'message'))
</div>
</body>
</html>