3.3 <style>
CSS 스타일은 style 엘리먼트 안에 작성됩니다. style 블록 또는 스타일 블록이라고 합니다.
예제 코드 /my-svelte-project/src/App.svelte 파일의 style
… 생략 …
<style>
main {
text-align: center;
padding: 1em;
max-width: 240px;
margin: 0 auto;
}
h1 {
color: #ff3e00;
text-transform: uppercase;
font-size: 4em;
font-weight: 100;
}
@media (min-width: 640px) {
main {
max-width: none;
}
}
</style>