2019-11-29 20:13:03 +00:00
|
|
|
@import url('https://fonts.googleapis.com/css?family=Exo+2:300,400,500&display=swap');
|
|
|
|
|
2020-01-30 06:11:24 +00:00
|
|
|
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
|
|
|
|
|
2019-11-29 20:13:03 +00:00
|
|
|
@import 'tailwindcss/base';
|
|
|
|
|
|
|
|
@import 'tailwindcss/components';
|
|
|
|
|
|
|
|
@import 'tailwindcss/utilities';
|
|
|
|
|
|
|
|
html {
|
|
|
|
@apply font-sans;
|
|
|
|
}
|
2020-01-29 16:13:04 +00:00
|
|
|
body {
|
2019-11-29 20:18:20 +00:00
|
|
|
background-image: url('~assets/images/bg-sm.jpg');
|
2019-11-29 20:13:03 +00:00
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
@apply min-h-screen;
|
|
|
|
}
|
|
|
|
@screen sm {
|
2020-01-29 16:13:04 +00:00
|
|
|
body {
|
2019-11-29 20:18:20 +00:00
|
|
|
background-image: url('~assets/images/bg-md.jpg');
|
2019-11-29 20:13:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@screen md {
|
2020-01-29 16:13:04 +00:00
|
|
|
body {
|
2019-11-29 20:18:20 +00:00
|
|
|
background-image: url('~assets/images/bg-lg.jpg');
|
2019-11-29 20:13:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@screen lg {
|
2020-01-29 16:13:04 +00:00
|
|
|
body {
|
2019-11-29 20:18:20 +00:00
|
|
|
background-image: url('~assets/images/bg-xl.jpg');
|
2019-11-29 20:13:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@screen xl {
|
2020-01-29 16:13:04 +00:00
|
|
|
body {
|
2019-11-29 20:18:20 +00:00
|
|
|
background-image: url('~assets/images/bg-xxl.jpg');
|
2019-11-29 20:13:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-29 16:13:04 +00:00
|
|
|
.content h1 {
|
2019-11-29 20:13:03 +00:00
|
|
|
@apply text-4xl;
|
|
|
|
}
|
2020-01-29 16:13:04 +00:00
|
|
|
.content h2 {
|
2019-11-29 20:13:03 +00:00
|
|
|
@apply text-3xl;
|
|
|
|
}
|
|
|
|
|
2020-01-29 16:13:04 +00:00
|
|
|
.content ul {
|
2019-11-29 20:13:03 +00:00
|
|
|
@apply list-disc;
|
|
|
|
}
|
2020-01-29 16:13:04 +00:00
|
|
|
.content ul li {
|
2019-11-30 05:11:13 +00:00
|
|
|
@apply ml-4;
|
|
|
|
}
|
2020-01-29 16:13:04 +00:00
|
|
|
.content a {
|
2019-11-29 20:13:03 +00:00
|
|
|
@apply text-yuika-blue-200;
|
|
|
|
}
|
|
|
|
|
2020-01-30 07:16:48 +00:00
|
|
|
.content blockquote {
|
|
|
|
@apply border-l-4 border-white pl-8 text-gray-200;
|
|
|
|
}
|