-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (74 loc) · 1.44 KB
/
style.css
File metadata and controls
88 lines (74 loc) · 1.44 KB
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
:root {
--dark-background: rgb(24, 30, 36);
}
.dark-theme .header,
.dark-theme pre {
background-color: #1F2831;
}
body.dark-theme {
background-color: rgb(24, 30, 36);
}
.img-circle {
border-radius: 50%;
display: block;
margin-left: auto;
margin-right: auto;
}
.dark-theme h1, .dark-theme h2.post-title{
color: #e54d7c;
}
.dark-theme h2 {
color:#6A5ACD;
}
.dark-theme h3 {
color: #8A2BE2;
}
.dark-theme .menu {
background: inherit;
}
.dark-theme .post-tags-uniq {
border-radius: 3px 0 0 3px;
display: inline-block;
color: #00FA9A;
font-size: 0.9rem;
height: 26px;
line-height: 26px;
padding: 0 20px 0 23px;
position: relative;
margin: 0 10px 10px 0;
text-decoration: none;
-webkit-transition: color 0.2s;
}
.dark-theme .post-tags-uniq::before {
background: #fff;
border-radius: 10px;
box-shadow: inset 0 10px;
color: #00FA9A;
content: '';
height: 6px;
left: 10px;
position: absolute;
width: 6px;
top: 10px;
}
.dark-theme .post-tags-uniq::after {
background: rgb(24, 30, 36);
border-bottom: 13px solid transparent;
border-left: 10px solid #181e24;
border-top: 13px solid transparent;
content: '';
position: absolute;
right: 0;
top: 0;
}
.dark-theme .post-tags-uniq:hover {
background-color: crimson;
color: white;
}
.dark-theme .post-tags-uniq:hover::after {
border-left-color: crimson;
}
.dark-theme code {
white-space: pre-line;
line-break: anywhere;
}