This repository has been archived by the owner on Oct 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhacker-vision.css
153 lines (122 loc) · 2.41 KB
/
hacker-vision.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
151
152
153
/* layout */
html {
background-color: #111;
color: #969696;
}
html,
body {
min-height: 100%;
}
.layout-container h1,
.layout-container h2,
.layout-container h3,
.layout-container h4,
.layout-container h5,
.layout-container h6 {
border-color: #2e2e2e;
}
.layout-container a {
color: #d7672a;
}
.layout-container a:hover {
color: #027080;
}
.layout-container a:hover img {
cursor: pointer;
}
.layout-container header {
background-color: #111;
border-color: #d7672a;
}
.layout-container header .repo-url-github {
filter: invert(100%);
-webkit-filter: invert(100%);
}
.layout-container .navigation {
box-shadow: rgba(38, 38, 38, 1) -1px 0 0 inset;
}
.layout-container .manual-dot {
background-color: #472847;
}
.layout-container .detail > h3,
.layout-container table thead,
.layout-container table td {
color: #a7a7a7;
}
.layout-container .detail > h3,
.layout-container table thead {
background-color: #2a2a2a;
}
.layout-container table td,
.layout-container footer {
border-color: #2e2e2e;
}
.layout-container table.files-summary tbody tr:hover {
background-color: #1f1f1f;
}
/* search */
.layout-container .search-result .selected {
background-color: #2e2e2e;
}
.layout-container .search-input-edge,
.layout-container .search-result li.search-separator {
background-color: #d7672a;
}
.layout-container .search-input {
border-color: #d7672a;
color: inherit;
}
.layout-container .search-result {
background-color: #111;
box-shadow: 1px 1px 4px #2e2e2e;
right: 0;
padding: 5px;
}
.layout-container .search-result li {
padding: 0;
}
.layout-container .search-result li a {
padding: 2px 4px;
}
.layout-container .search-result li.search-separator {
color: #111;
padding: 2px 4px;
}
/* pretty print */
pre.prettyprint,
pre > code {
background-color: #191919;
border-radius: 0;
}
.import-path pre.prettyprint,
.import-path pre.prettyprint code {
background-color: inherit;
}
.layout-container .pun,
.layout-container .pln {
color: #ababac;
}
.layout-container .typ {
color: #b58c57;
}
.layout-container .kwd {
color: #77a15c;
}
.layout-container .str {
color: #8c75ee;
}
.layout-container .lit {
color: #1b79c5;
}
pre.source-code {
background: inherit;
}
pre.source-code ol {
background-color: #1f1f1f;
}
pre.source-code li {
background-color: #111;
}
.com {
color: #737175;
}