-
Notifications
You must be signed in to change notification settings - Fork 14
/
styles.css
86 lines (72 loc) · 1.2 KB
/
styles.css
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
75
76
77
78
79
80
81
82
83
84
85
86
/* ./styles/globals.css */
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
body {
font-family: 'Noto Sans JP', sans-serif;
}
p,
ul,
li,
quote {
font-size: 0.875rem;
margin-bottom: 0.875rem;
word-break: break-all;
}
a {
text-decoration: underline;
}
li {
margin-bottom: 0.5rem;
}
ul {
list-style-type: disc;
list-style-position: inside;
}
h2 {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 0.875rem;
margin-top: 1rem;
}
h3 {
font-weight: 600;
margin-bottom: 0.875rem;
margin-top: 1rem;
}
/* インラインのコード */
p code {
display: inline-block;
padding: 0.2rem 0.8rem;
background-color: #282c34;
overflow: auto;
color: #ccc;
margin-bottom: 0;
vertical-align: middle;
white-space: pre;
padding: 0.25rem 0.5rem;
margin: 0px;
font-size: 0.85rem;
border-radius: 3px;
line-height: 1.3;
word-break: break-all;
max-width: 100%;
}
figcaption {
text-align: center;
font-size: 0.875rem;
}
figure {
max-width: 100%;
}
.youtube {
max-height: 320px;
max-width: 100%;
}
hr {
margin: 2rem 0;
}
#__next {
width: 100%;
}