-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdarkTheme.css
More file actions
80 lines (74 loc) · 1.77 KB
/
darkTheme.css
File metadata and controls
80 lines (74 loc) · 1.77 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
/*
The use of !important is out of sheer laziness. To fix, just create two css
documents, one for light theme and one for dark. Until then, this will have to
work.
*/
body{
background-color: #090909 !important;
color: #ccc !important;
}
#leftMobile{
background-color: #090909 !important;
}
.hamburger{
filter: invert(25%) !important;
}
#topMobile{
background-color: #090909 !important;
}
msg{
background-color: #0d0d0d !important;
color: #bcbcbc !important;
border: 1px solid #242424 !important;
}
#top, #topMobile, #userTopWrapper{
background-color: #090909 !important;
box-shadow: none !important;
border-bottom: 1px solid #242424 !important;
}
input[type=text]{
border: 0 !important;
border-bottom: 1px solid #ccc !important;
background-color: transparent;
color: #bcbcbc;
}
#searchBar, #searchBarMobile, textarea, #postEditor{
background-color: #1a1919 !important;
border: 0 !important;
color: #bcbcbc;
}
#addPost:hover, #addPostMobile:hover{
background-color: #1a1919 !important;
}
#postEditor{
border-radius: 0 !important;
}
.userTopSel{
color: inherit !important;
}
#commentWriter{
border: 1px solid #626262 !important;
color: inherit !important;
}
#commentWriterButtons, #commentEditor{
background-color: #0b0b0b !important;
}
#commentSubmitButton{
background-color: #111 !important;
}
.card{
background-color: #0b0b0b !important;
color: #bcbcbc !important;
box-shadow: none !important;
}
.card:hover:not(.noShadow):not(.noHover){
box-shadow: none !important;
border: 1px solid #626262 !important;
}
.card:not(.noShadow){
border: 1px solid #242424 !important;
box-shadow: none !important;
}
button[type="submit"]:not(#commentSubmitButton){
background-color: #111;
}