app.blade.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>LaravelDemo - @yield('title')</title>
  5. <style>
  6. body {
  7. font-family: system-ui, sans-serif;
  8. font-size: 20px;
  9. margin: 0;
  10. background-color: #E88F00;
  11. color: #00305B;
  12. }
  13. .container {
  14. max-width: 48rem;
  15. margin: 0px auto;
  16. }
  17. .content {
  18. background-color: #202020;
  19. color: #D0D0D0;
  20. font-size: 18px;
  21. padding: 1rem;
  22. }
  23. .footer {
  24. font-size: 12px;
  25. padding: 1rem;
  26. }
  27. a:visited {
  28. color: inherit;
  29. }
  30. .header a {
  31. display: inline-block;
  32. text-decoration: none;
  33. padding: 1rem 1rem 1rem 0ex;
  34. color: inherit;
  35. }
  36. .logo {
  37. font-weight: bold;
  38. padding: 1rem !important;
  39. float: left;
  40. }
  41. @media (max-width: 72rem) {
  42. .header a {
  43. padding: 1rem;
  44. }
  45. .header .container {
  46. margin: 0;
  47. }
  48. .logo {
  49. float: none;
  50. }
  51. }
  52. </style>
  53. </head>
  54. <body>
  55. @include('include.header')
  56. <div class="content">
  57. <div class="container">
  58. @yield('content')
  59. </div>
  60. </div>
  61. @include('include.footer')
  62. </body>
  63. </html>