You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

App.svelte 452B

12345678910111213141516171819202122232425262728
  1. <script>
  2. export let name;
  3. </script>
  4. <main>
  5. <h1>Hello {name}!</h1>
  6. <p>Visit the <a href="https://svelte.dev/tutorial">Svelte tutorial</a> to learn how to build Svelte apps.</p>
  7. </main>
  8. <style>
  9. main {
  10. text-align: center;
  11. padding: 1em;
  12. max-width: 240px;
  13. margin: 0 auto;
  14. }
  15. h1 {
  16. color: #ff3e00;
  17. text-transform: uppercase;
  18. font-size: 4em;
  19. font-weight: 100;
  20. }
  21. @media (min-width: 640px) {
  22. main {
  23. max-width: none;
  24. }
  25. }
  26. </style>