-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.module.scss
74 lines (73 loc) · 1.59 KB
/
blog.module.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
@tailwind components;
@tailwind utilities;
@layer utilities {
.blog {
// h1 {
// @apply border-b-8 border-cyan-300 font-head text-lg text-blue-900 md:block md:max-w-full md:text-2xl;
// }
// h2 {
// @extend h1;
// @apply border-b-4 border-cyan-300 md:text-xl;
// }
// h3 {
// @extend h1;
// @apply border-b-2 border-blue-300 md:text-lg;
// }
// h4 {
// @extend h1;
// @apply border-0 md:text-base;
// }
// h5 {
// @extend h1;
// @apply border-0 md:text-base;
// }
// h6 {
// @extend h1;
// @apply border-0 md:text-base;
// }
// p {
// @apply ml-6 text-gray-900;
// }
h1,
h2,
h3,
h4,
h5,
h6 {
@apply font-head text-gray-800 md:ml-4;
}
p {
@apply text-gray-600 md:ml-8;
code {
@apply bg-gray-300 text-gray-900;
}
}
// a {
// @apply mt-6 ml-6 text-blue-400 hover:text-blue-600 hover:underline;
// }
// ul {
// @apply mt-6 ml-12 list-disc font-bold text-gray-900;
// }
// ol {
// @extend ul;
// @apply list-decimal;
// }
// pre {
// code {
// @apply mt-6 ml-6;
// }
// }
// // 単一codeのみ
// $singleCode: p, ul;
// @each $s in $singleCode {
// #{$s} {
// code {
// @apply bg-gray-300 px-2 font-normal;
// }
// }
// }
// blockquote {
// @apply ml-6 rounded-r-lg border-l-4 border-gray-400 bg-gray-300 p-2 text-gray-900;
// }
}
}