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: 2f3279fb69cf7f65a3a16cd2c8a168ac2a863370 (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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
body {
  color: #d8dde2;
  background-color: #222831;
}

table thead {
  color: #c7d5f6;
}

table tr:nth-child(even) {
  background-color: rgba(51, 54, 58, .35);
}

::selection {
  color: #191919;
  background-color: #c2c1a2;
}

mark {
  background-color: #515b70;
}

pre {
  background-color: #393b3d;
}

.title,
.site.name {
  color: #c7d5f6;
}

.note.content {
  color: #d8dde2;
}

.article.markdown-body {
  background-image: linear-gradient(90deg, rgba(250, 200, 200, .05) 3%, rgba(0, 0, 0, 0) 3%), linear-gradient(360deg, rgba(250, 200, 200, .05) 3%, rgba(0, 0, 0, 0) 3%);
}

code,
kbd,
tt,
samp {
  color: #d19a66;
  background-color: #40454d;
}

a {
  color: #2997ff;
}

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

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

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

.tag {
  color: #c7d5f6;
}

.category {
  color: #24292e;
  background-color: rgba(199, 213, 246);
}

strong,
b,
.article.markdown-body h1,
.article.markdown-body h2,
.article.markdown-body h3,
.article.markdown-body h4,
.article.markdown-body h5,
.article.markdown-body h6 {
  color: #c7d5f6;
}

.article.markdown-body q,
.article.markdown-body blockquote {
  color: #9aa3ad;
}

.article.markdown-body blockquote {
  border-left-color: #595e66;
}

#header {
  background-color: #393e46;
}

.note.list .item {
  background-color: #393e46;
  box-shadow: inset -1px 0 0 0 rgba(14, 17, 21, .6),
              inset 0 -1px 0 0 #0e1215, inset 1px 0 0 0 rgba(14, 17, 21, .6);
}

.note.list .item:hover {
  box-shadow: 0 2px 6px 0 #0e1215,
              inset -1px 0 0 0 rgba(14, 17, 21, .3), inset 0 -1px 0 0 #0e1215,
              inset 1px 0 0 0 rgba(14, 17, 21, .2);
}

.article-container {
  background-color: #393e46;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, .2);
}

@media (max-width: 500px) {
  .note.list .item,
  .article-container {
    box-shadow: none;
  }
}

.article.author .bio {
  color: #828997;
}

/* border color */
.note.imgs .img,
.article.markdown-body table td,
.article.markdown-body table th,
.article.markdown-body .lntable {
  border-color: rgba(199, 213, 246, .25);
}

.article.markdown-body h1,
.article.markdown-body h2 {
  border-bottom-color: rgba(199, 213, 246, .25);
}

.article.license {
  background-color: #323842;
  border-color: rgba(199, 213, 246, .25);
}

.article.discussion {
  border-top-color: rgba(199, 213, 246, .25);
  border-bottom-color: rgba(199, 213, 246, .25);
}

.article.markdown-body .lntable tr>:first-child {
  border-right-color: rgba(199, 213, 246, .25);
}