-
Notifications
You must be signed in to change notification settings - Fork 2
/
OneDark.css
150 lines (128 loc) · 2.78 KB
/
OneDark.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
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
:root {
--font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--body-color: rgba(255, 255, 255, 0.7);
--body-background: #282c34;
--header-link-color: #9b9494;
--header-active-link-color: #d19a66;
--input-border: 1px solid #2c384e;
--input-background: #2c384e;
--input-placeholder-color: #888;
--input-focus-border-color: #d19a66;
--input-focus-box-shadow: none;
--category-background-color: #2c384e;
--category-border-color: #2c384e;
--item-border-color: rgba(0, 0, 0, .3);
--item-padding: 1em;
--item-title-link-font-weight: 600;
--item-status-read-title-link-color: rgba(209, 154, 102, 0.5);
--entry-header-title-link-color: #d19a66;
--entry-content-code-background: #2c384e;
--entry-content-code-border-color: #2c384e;
--entry-content-font-weight: 300;
--entry-content-font-family: 'Literata', 'Libre Baskerville', Georgia, 'Times New Roman', Times, serif !important;
--entry-content-quote-font-family: var(--entry-content-font-family)
}
*:focus {
outline: 0 !important;
}
input[type="search"],
input[type="url"],
input[type="password"],
input[type="text"],
input[type="number"] {
padding: .25em .5em;
box-shadow: none;
border-radius: 6px;
}
.entry header h1 {
margin: 1em 0 16px;
}
.entry-actions {
opacity: .5;
}
.entry-meta {
color: #98be65;
}
.entry-website a {
color: #c678dd;
}
.entry-date {
font-size: .75em;
color: rgba(255, 255, 255, 0.4);
}
.entry-actions li a {
font-weight: bold;
color: #9b9494;
}
.entry-actions li a:hover {
font-weight: bold;
color: white;
}
.entry header h1 a:hover,
.entry header h1 a:focus {
color: #d19a66;
text-decoration: underline;
}
.pagination-top {
display: none;
}
.entry-content {
line-height: 2;
padding-top: 2em;
}
.entry-content p {
margin-top: 0;
margin-bottom: 1em;
}
.entry-content a {
color: #c678dd;
}
.entry-content a:visited {
color: #dd7890;
}
.entry-content img {
width: 100%;
margin: 0 auto;
}
.entry-content figcaption {
color: #c678dd;
background-color: rgba(0, 0, 0, .3);
margin-top: -7px;
border-radius: 0 0 4px 4px;
padding: 0.25rem 1rem;
text-transform: unset;
}
.entry-content pre {
padding: .5rem 1rem;
border-radius: 6px;
margin: 0 0 1em;
}
.entry-content code {
padding: 3px;
border-radius: 6px;
}
.item,
.alert {
border: 1px solid var(--item-border-color);
margin-bottom: 20px;
background: rgba(0, 0, 0, .3);
border-radius: 6px;
}
.item-title a {
color: #d19a66;
}
.item-meta-info {
padding-top: 2px;
}
.item-meta-info li a {
color: #c678dd;
}
.item-meta-info li time {
color: #98be65;
}
.item-meta-info li span {
color: #61afef;
}
.entry-content li {
margin: .75em 0;
}