-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathcolors.css
163 lines (146 loc) · 3.51 KB
/
colors.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
154
155
156
157
158
159
160
161
162
/* Copyright 2014 gokoururi
This work is free. You can redistribute it and/or modify it under the
terms of the Do What The Fuck You Want To Public License, Version 2,
as published by Sam Hocevar. See the COPYING file for more details. */
body {
background: #1D1F21;
}
.name-highlight {
color: #d67b96;
}
main {
background-color: #282A2E;
border-color: #373B41;
}
h1 {
color: #FFF;
}
.subtitle {
color: #FFF;
}
.searchBar {
color: rgba(0,0,0,0);
border-color: lightgrey;
}
.searchBar:hover {
box-shadow: 0 0 5px #FFF;
border-color: #FFF;
}
.searchBar::-webkit-input-placeholder { color: rgba(0,0,0,0); }
.searchBar:-moz-placeholder { color: rgba(0,0,0,0); opacity: 1; } /* Fx 4-18 */
.searchBar::-moz-placeholder { color: rgba(0,0,0,0); opacity: 1; } /* Fx 19+ */
.searchBar:-ms-input-placeholder { color: rgba(0,0,0,0); } /* IE 10+ */
.searchBar:focus::-webkit-input-placeholder { color: rgba(100,100,100,1); }
.searchBar:focus:-moz-placeholder { color: rgba(100,100,100,1); opacity: 1; } /* Fx 4-18 */
.searchBar:focus::-moz-placeholder { color: rgba(100,100,100,1); opacity: 1; } /* Fx 19+ */
.searchBar:focus:-ms-input-placeholder { color: rgba(100,100,100,1); } /* IE 10+ */
/* Specyfing opacity for Fx is only resetting the defaults. Alpha from rgba will still work. */
.searchBar:focus {
color: rgba(100,100,100,1);
}
.search_google {
background-image: url('images/icons/google.png');
}
.search_youtube {
background-image: url('images/icons/youtube.png');
}
.search_wikipedia {
background-image: url('images/icons/wikipedia.jpg');
}
/* Grey button */
.button_grey > a,
.button_grey > ul {
border-color: #373B41;
}
.button_grey > a,
.button_grey > ul > li > a {
color: #81A2BE;
background: #1D1F21;
}
.button_grey > a:after {
border-left-color: #373B41;
}
.button_grey:hover > a,
.button_grey > ul > li > a:hover {
color: #d67b96;
background: #70293b;
}
.button_grey:hover > a,
.button_grey:hover > ul {
border-color: #70293b;
}
.button_grey:hover > a:after {
border-left-color: #d67b96;
}
/* Green button */
.button_green > a,
.button_green > ul {
border-color: #91b476;
}
.button_green > a,
.button_green > ul > li > a {
color: #43644a;
background: #729a64;
}
.button_green > a:after {
border-left-color: #91b476;
}
.button_green:hover > a,
.button_green > ul > li > a:hover {
color: #269926;
background: #67E667;
}
.button_green:hover > a,
.button_green:hover > ul {
border-color: #67E667;
}
.button_green:hover > a:after {
border-left-color: #269926;
}
/* column standard colors */
.column {
border-right-color: #373B41;
}
.column > a,
.column > ul > li:before {
color: #1D1F21;
}
.column > a {
text-shadow: 0 0.5px #373B41;
}
.column > ul > li > a {
color: #81A2BE;
}
/* purple column highlight */
.column_purple:hover > a,
.column_purple:hover > ul > li:before {
color: #3c3a5c;
}
.column_purple:hover > a {
text-shadow: 0 0.5px #b9b6d9;
}
.column_purple > ul > li > a:hover {
color: #b9b6d9;
}
/* pink column highlight */
.column_pink:hover > a,
.column_pink:hover > ul > li:before {
color: #70293b;
}
.column_pink:hover > a {
text-shadow: 0 0.5px #d67b96;
}
.column_pink > ul > li > a:hover {
color: #d67b96;
}
/* green column highlight */
.column_green:hover > a,
.column_green:hover > ul > li:before {
color: #43644a;
}
.column_green:hover > a {
text-shadow: 0 0.5px #729a64;
}
.column_green > ul > li > a:hover {
color: #91b476;
}