-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdark-gray.css
78 lines (74 loc) · 1.54 KB
/
dark-gray.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
/* @theme dark-gray */
@import 'default';
:root {
--default-color: #537072;
--default-bg-color: #F4EBDB;
--title-color: #F4EBDB;
--title-bg-color: #2C4A52;
--hf-color: #8E9B97;
--highlight-color: #F4EBDB;
--highlight-bg-color: #8E9B97;
}
section {
background-color: var(--default-bg-color);
font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", '游ゴシック Medium', 'Yu Gothic Medium', "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", "verdana", sans-serif;
color: var(--default-color);
}
header {
text-align: left;
width: 100%;
color: var(--hf-color);
}
footer {
text-align: center;
width: 100%;
color: var(--hf-color);
}
/* ``` hogehoge ```*/
/*pre{
border: none;
color: var(--highlight-color);
background-color: var(--highlight-bg-color);
}*/
h1, h2, h3, h4, h5 {
text-align: left;
color: var(--default-color);
}
h1 {
text-align: center;
}
h3{
text-align: right;
}
img {
background-color: transparent;
}
section.title {
background-color: var(--title-bg-color);
color: var(--title-color);
}
section.title > h1{
text-align: left;
color: var(--title-color);
}
section.title > h5{
text-align: right;
color: var(--title-color);
}
section.title > h2, h3, h4{
text-align: center;
color: var(--title-color);
}
blockquote{
font-size: 22px;
}
table{
font-size: 24px;
table-layout: fixed;
overflow-wrap: normal;
text-align: center;
}
table td{
overflow-wrap: break-word;
text-align: center;
}