mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 17:30:59 +01:00
993b40201c
* New FAQ, new renderer * Push blog stuff * Fix blog posts * Add tutorial to be rendered * Update documentation/content/blog/2023-03-09-zero-config-type-safety.md Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> * Update documentation/content/blog/2023-03-09-zero-config-type-safety.md Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> * Revamp a lot of renderer, make it (soft) compatible with sveltekit * Remove markdown types * Clean up faq +page * Document stuff * Make the options more explicity * chore(site-2): Restructure docs pt 2 (#8604) * Push * Update readme * Push * inor accessibility fix * minr stuff * Add prepare * Run prettier * Remove test script * pnpm update * Update sites/svelte.dev/src/routes/examples/[slug]/+page.svelte Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> * Update sites/svelte.dev/package.json Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> --------- Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> --------- Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
21 lines
422 B
Svelte
21 lines
422 B
Svelte
<button on:click> Click me </button>
|
|
|
|
<style>
|
|
button {
|
|
height: 4rem;
|
|
width: 8rem;
|
|
background-color: #aaa;
|
|
border-color: #f1c40f;
|
|
color: #f1c40f;
|
|
font-size: 1.25rem;
|
|
background-image: linear-gradient(45deg, #f1c40f 50%, transparent 50%);
|
|
background-position: 100%;
|
|
background-size: 400%;
|
|
transition: background 300ms ease-in-out;
|
|
}
|
|
button:hover {
|
|
background-position: 0;
|
|
color: #aaa;
|
|
}
|
|
</style>
|