-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSZB-Nordish-Vanilla.css
170 lines (128 loc) · 3.34 KB
/
SZB-Nordish-Vanilla.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
163
164
165
166
167
168
169
170
@-moz-document domain("szuru.example.com") {
:root {
/* BACKGROUND COLORS */
--bg-primary:#2e3340;
--bg-secondary: #3b4252;
--bg-tertiary: #434c6e;
/* BUTTON / LINK COLORS */
--focus: #8fbcbb;
--active: #8fbcbb;
--link: #8fbcbb;
/* FONT COLOR */
--font: #d8dee9;
}
/* Background Elements / Panels */
body {
background: var(--bg-primary);
color: var(--font);
}
#content-holder > .content-wrapper:not(.transparent){
background: var(--bg-secondary);
}
/* Branding */
nav#top-navigation ul #mobile-navigation-toggle {
font-family: inherit;
color: var(--font);
}
/* Navigation */
a {
color: var(--link);
}
nav#top-navigation ul li a {
color: var(--link);
}
nav.buttons ul li.active a {
color: var(--link);
}
nav.buttons ul li:hover:not(.active) a {
color: var(--link);
background: rgba(0,0,0,.15);
}
nav#top-navigation {
background: var(--bg-secondary);
color: var(--font);
}
nav.buttons ul li:not(.active) a{
color: var(--font);
}
input[type="email"], input[type="number"], input[type="password"], input[type="text"], select, textarea {
background-color: var(--bg-tertiary);
}
input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=text]:focus, select:focus, textarea:focus {
border-color: var(--focus);
color: var(--font);
}
input[type="email"], input[type="number"], input[type="password"], input[type="text"], select, textarea {
border-color: var(--bg-secondary);
color: var(--font);
}
/* Posts */
.post-list ul li:hover {
background: var(--focus);
}
.post-list ul li a:active .thumbnail, .post-list ul li a:focus .thumbnail, .post-list ul li:hover a .thumbnail{
outline-color: var(--focus) !important;
}
/* Search */
button, input[type="button"], input[type="submit"] {
background: var(--bg-secondary);
border-color: var(--focus);
color: var(--font);
}
/* Comment Box */
.comment-container .comment {
border: none;
}
.comment-container .comment header {
background: var(--bg-secondary);
border: none;
}
.comment-container .comment header nav.edit ul li.active {
background: var(--bg-tertiary);
border-color: var(--active);
}
/* Tags */
.tag-creator, .tag-series, .tag-species, .tag-character, .tag-year {
font-weight:bold;
}
.tag-list table th {
background: var(--bg-secondary);
}
.tag-list table tr:hover td {
background: var(--bg-tertiary);
}
/* Users List */
.user-list ul li {
background: var(--bg-secondary);
}
/* Pagination */
.pager .page .page-header::before {
background: var(--bg-secondary);
}
.pager .page .page-header span {
background: var(--bg-secondary);
}
/* Uploader */
.file-dropper-holder .file-dropper {
background: var(--bg-secondary);
border-color: var(--focus);
}
/* System Messages */
.messages .message.info {
background: var(--bg-secondary);
border-color: var(--focus);
}
.messages .message.error {
background: var(--bg-secondary);
border-color: var(--focus);
}
.messages .message.success {
background: var(--bg-secondary);
border-color: var(--focus);
}
.snapshot-list ul li div.operation-created, .snapshot-list ul li div.operation-modified {
background: var(--bg-secondary);
}
.snapshot-list ul li div.operation-created + .details, .snapshot-list ul li div.operation-modified + .details {
background: var(--bg-tertiary);
}