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: bd0625eb8ff4f12cb43f91c1e1fea7c2404159ad (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
102
103
104
body {
  color: rgba(255,255,255,.85);
  background-color: #1f1f24;
}

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

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

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

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

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

pre {
  background-color: #1f1f24;
}

a {
  color: #82aaff;
}

.pagination ul li a {
  color: #82aaff;
}

.pagination ul li a.active {
  background-color: #82aaff;
}

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

.tag {
  color: #ff757f;
  background-color: rgba(227,231,235,.08);
}

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

.note.list .item>a:hover,
.nav.item:hover {
  background-color: rgba(227,231,235,.15);
}

/* border color */
pre,
.note.imgs .img,
.image-container,
.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,
.note.list .item {
  border-bottom-color: #3e3f44;
}

.article.markdown-body blockquote {
  border-left-color: #5182ce;
  background-color: rgba(81, 130, 206, .08);
}

.image-container {
  background-color: rgba(229, 239, 249, .02)
}

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

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