mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 17:30:59 +01:00
15 lines
245 B
Svelte
15 lines
245 B
Svelte
<style>
|
|
button {
|
|
font-family: 'Comic Sans MS';
|
|
font-size: 2em;
|
|
padding: 0.5em 1em;
|
|
color: royalblue;
|
|
background: gold;
|
|
border-radius: 1em;
|
|
box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
|
|
}
|
|
</style>
|
|
|
|
<button on:click>
|
|
Click me
|
|
</button> |