layout.astro 448 B

12345678910111213141516171819202122
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Mikro</title>
  7. </head>
  8. <body>
  9. <slot />
  10. </body>
  11. <style>
  12. body {
  13. background-color: black;
  14. height: 100%
  15. width: 100%;
  16. font-family: Monospace;
  17. color: white;
  18. }
  19. </style>
  20. </html>