-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
194 lines (161 loc) · 3.13 KB
/
style.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/* Super-minimal CSS reset of sorts. */
*, h1, h2, h3, h4, h5, h6 {
margin: 0 ;
padding: 0;
}
body {
background-color: rgb(5, 57, 100);
font-family: 'Open Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Oswald', 'sans-serif';
}
h2 {
color: rgba(255, 255, 255, 0.91);
font-size: 2em;
letter-spacing: 3px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
h6 {
font-size: 0.75em;
margin: 5px;
}
.clearfix {
clear: both;
}
#content {
background-color: rgb(18, 80, 132);
box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.62);
margin: 0 auto 20px;
padding: 20px 0;
width: 1000px;
}
.issueRow {
margin: 20px 0;
}
.issue {
background-color: rgb(74, 146, 205);
margin-bottom: 30px;
vertical-align: top;
}
.issue:hover {
background-color: rgb(100, 164, 216);
}
.issue > div {
display: inline-block;
height: 287px;
padding: 10px;
vertical-align: top;
}
.issueRowAuthorStatus {
background-color: rgb(165, 196, 221);
width: 20%;
}
.issueRowBody {
width: 54%;
}
.issueRowTags {
width: 20%;
}
.issueListTag {
border: 1px solid rgba(0,0,0,0.2);
border-radius: 3px;
margin: 3px;
padding: 1px 6px;
}
.panelThing {
background-color: rgb(255, 255, 255, 0.75);
box-shadow:1px 1px 3px -1px black;
padding: 1px 10px 5px;
text-align: center;
}
.panelThing.state.open {
background-color: rgba(32, 147, 13, 0.49);
}
.panelThing.state.closed {
background-color: rgb(144, 147, 168);
}
.panelThing.opened, .panelThing.tagged {
background-color: rgb(165, 196, 221);
}
.panelThing:first-of-type {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.panelThing:last-of-type {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.issueRowAuthorStatus img {
border-radius: 1px;
box-shadow: 1px 1px 2px 0px black;
max-width: 100%;
}
.issueRowAuthorStatus h3 {
color: rgba(5, 57, 100, 0.72);
letter-spacing: 1px;
margin: 3px;
text-align: center;
}
.issueBody {
font-weight: 100;
font-size: 0.9em;
height: 240px;
overflow: hidden;
white-space: pre-wrap;
width: 100%;
}
.header-thing {
background: rgb(104, 160, 124);
margin: 10px 0 30px;
padding: 20px 20px;
}
.header-thing h1 {
color: rgba(255, 255, 255, 0.83);
letter-spacing: 7px;
text-align: center;
}
.header-thing input[type="text"] {
float: left;
font-family: 'Open Sans';
font-size: 0.9em;
font-weight: 100;
padding: 10px;
width: 25%;
}
.checkbox-label {
color: rgba(0,0,0,0.6);
float: left;
font-weight: 100;
padding-left: 10px;
position: relative;
top: 11px;
}
.checkbox-label input[type="checkbox"] {
bottom: 3px;
position: relative;
}
.bottom button {
border: 0;
border-radius: 3px;
margin: 3px 0;
outline: 0;
padding: 10px;
}
.bottom button.on {
background-color: rgb(26, 131, 26);
box-shadow: 0px 0px 3px rgba(0,0,0,0.3) inset;
}
.bottom button.off {
background-color: rgb(203, 216, 203);
box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
}
.title {
float: right;
text-align: center;
}
a.incognito, a.incognito:link, a.incognito:visited, a.incognito:hover, a.incognito:active, {
text-decoration: none !important;
}