|
@@ -5,19 +5,71 @@
|
|
|
<style>
|
|
|
body {
|
|
|
font-family: system-ui, sans-serif;
|
|
|
- font-size: 16px;
|
|
|
+ font-size: 20px;
|
|
|
+ margin: 0;
|
|
|
+
|
|
|
+ background-color: #E88F00;
|
|
|
+ color: #00305B;
|
|
|
}
|
|
|
|
|
|
.container {
|
|
|
max-width: 48rem;
|
|
|
margin: 0px auto;
|
|
|
}
|
|
|
+
|
|
|
+ .content {
|
|
|
+ background-color: #202020;
|
|
|
+ color: #D0D0D0;
|
|
|
+
|
|
|
+ font-size: 18px;
|
|
|
+ padding: 1rem;
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer {
|
|
|
+ font-size: 12px;
|
|
|
+ padding: 1rem;
|
|
|
+ }
|
|
|
+
|
|
|
+ a:visited {
|
|
|
+ color: inherit;
|
|
|
+ }
|
|
|
+
|
|
|
+ .header a {
|
|
|
+ display: inline-block;
|
|
|
+ text-decoration: none;
|
|
|
+ padding: 1rem 1rem 1rem 0ex;
|
|
|
+ color: inherit;
|
|
|
+ }
|
|
|
+
|
|
|
+ .logo {
|
|
|
+ font-weight: bold;
|
|
|
+ padding: 1rem !important;
|
|
|
+ float: left;
|
|
|
+ }
|
|
|
+
|
|
|
+ @media (max-width: 72rem) {
|
|
|
+ .header a {
|
|
|
+ padding: 1rem;
|
|
|
+ }
|
|
|
+
|
|
|
+ .header .container {
|
|
|
+ margin: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .logo {
|
|
|
+ float: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
</style>
|
|
|
</head>
|
|
|
<body>
|
|
|
+ @include('include.header')
|
|
|
+ <div class="content">
|
|
|
<div class="container">
|
|
|
@yield('content')
|
|
|
</div>
|
|
|
+ </div>
|
|
|
+ @include('include.footer')
|
|
|
</body>
|
|
|
</html>
|
|
|
|