Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dark-style.css « css « assets - github.com/cntrump/hugo-notepadium.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53093f4ea327654d5291e73ce22c7bdb9b30cc96 (plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
body {
  color: rgba(255,255,255,.85);
  background-color: #2c2c2e;
}

mark,
::selection {
  background-color: #515b70;
}

.note,
.site.name {
  color: rgba(255,255,255,.85);
}

.site.slogan .title,
.note.date,
.article.date,
.footer {
  color: #92a1b1;
}

.note.content,
.article.markdown-body {
  color: rgba(255,255,255,.6);
}

code,
kbd,
tt,
samp {
  color: #fc6a5d;
}

pre {
  background-color: #1f1f24;
}

a {
  color: #5482ff;
}

.pagination ul li a {
  color: #5482ff;
}

.pagination ul li a.active {
  background-color: #5482ff;
}

.pagination ul li a:hover:not(.active) {
  background-color: rgba(130, 170, 255, .5);
}

.tag,
.category {
  border-color: #3e3f44;
}

.tag {
  color: #fc6a5d;
  background-color: #2c2c2e;
}

.category {
  color: rgba(255,255,255,.85);
  background-color: #8a4a4a;
}

.note.list .item,
.article.markdown-body {
  background-color: #1c1c1e;
}

/* border color */
pre,
.note.imgs .img,
.article.markdown-body table td,
.article.markdown-body table th,
.article.markdown-body .lntable {
  border-color: #3e3f44;
}

.article.markdown-body h1,
.article.markdown-body h2,
.site.slogan .title {
  border-bottom-color: #3e3f44;
}

.article.markdown-body blockquote {
  border-left-color: #5182ce;
}

.article.discussion {
  border-top-color: #3e3f44;
  border-bottom-color: #3e3f44;
}

.article.markdown-body .lntable tr>:first-child {
  border-right-color: #3e3f44;
}