This repository has been archived by the owner on Apr 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
grayscale.css
108 lines (89 loc) · 2.03 KB
/
grayscale.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
/* Body */
#Head { background:none; }
body { background: url('https://cdn.rawgit.com/Goodlookinguy/pwvnrg/master/grayscale.content/zwartevilt.png') repeat; }
/* User Control Panel */
.Row > .Box
{
background: rgb(45, 47, 55);
}
/* Fixes subforum link colors */
.ChildCategories a
{
color:rgba(255,255,255,0.6);
}
.ChildCategories a:hover
{
color:rgba(255,255,255,0.85);
}
#Form_Body:focus
{
box-shadow:0 0 5px 2px rgba(255,255,255,0.5);
}
/* Made posts have a hover-over border to help eye focus */
.MessageList .Item:hover
{
box-shadow: 0 0 9px 3px rgba(255,255,255,0.15);
}
/* Various item lists item colors */
.Item.Unread.ItemDiscussion
{
background-color:rgba(0,0,0,0.05);
}
.Item.Unread.ItemDiscussion > td:first-child:hover
{
border-left:3px solid red;
}
.Item.New.ItemDiscussion
{
background-color:rgba(255,255,255,0.01);
}
.Item.New.ItemDiscussion > td:first-child:hover
{
border-left:3px solid cyan;
}
/* Changes subforum */
/* Changes general post color (is too dark otherwise) */
.ItemDiscussion, .Comment, .Activities > .Activity, .MessageList > li, .Item-Search, .MessageList > li.Item
{
background-color:rgb(45, 47, 55);
}
/* Added hover-over page numbers */
.Pager a:hover:not(.Highlight)
{
background:linear-gradient(rgba(104,104,111,0.8),rgba(61,61,70,0.8));
color:#F4F4F4 !important;
border-bottom:1px solid rgba(0,0,0,0.5);
}
.Pager a:active:not(.Highlight)
{
background:linear-gradient(rgba(61,61,70,0.5), rgba(104,104,111,0.5));
}
/* Changes to make quotes stand out more */
blockquote.Quote
{
border-left:4px solid rgba(255,255,255,0.35);
background-color:rgba(0,0,0,0.1);
}
.Message blockquote.Quote:hover
{
box-shadow:0 0 5px 2px rgba(128,128,128,0.25);
}
/* Change form box color (index, activity, profile, post) */
.CommentFormWrap
{
background:none;
border:0;
}
.Section-ActivityList .FormWrapper,
.FormWrapper
{
box-sizing:border-box;
background-color:rgb(45, 47, 55);
margin-bottom:10px;
}
/* Code box */
pre
{
margin:8px;
padding-bottom:0;
}