-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
202 lines (170 loc) · 3.62 KB
/
popup.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
195
196
197
198
199
200
201
202
body {
width: 480px;
margin: 0;
background-color: #f1f1f1;
padding: 10px;
border: 1px solid #ebebeb;
color: #444;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 13px;
line-height: 1.4em;
}
header {
display: block;
border-bottom: 2px solid #ebebeb;
background: #82B541;
}
header > * {
margin: 16px 5px;
display: inline-block;
vertical-align: middle;
}
.info, #status {
padding-left: 5px;
color: #fff;
font-weight: 400;
}
#check_now {
position: relative;
float: right;
outline: none;
font-size: 25px;
text-decoration: none;
}
.theme {
display: inline-block;
width: 100%;
vertical-align: top;
}
body a {
text-decoration: none;
color: #444;
}
body a:hover {
color: #ccc;
}
.comment_link:visited {
color: red;
text-decoration: line-through;
}
.comment {
line-height: 20px;
text-transform: CAPITALIZE;
}
.mark_all_as_read.action {
position: absolute;
top: 7px;
right: 5px;
color: #82B541;
}
#check_now:hover {
opacity: 0.3;
}
.template {
display: none;
}
.accordion [type=radio], .accordion [type=checkbox] {
display: none;
}
.accordion [type=radio], .accordion [type=checkbox] {
display: none;
}
.accordion label {
display: block;
font-size: 16px;
line-height: 16px;
background: #82B541;
border: 1px solid #cccccc;
color: #F4F4F4;
cursor: pointer;
text-transform: capitalize;
-webkit-transition: all .2s ease-out;
-moz-transition: all .2s ease-out;
}
.accordion label:hover, .accordion [type=radio]:checked ~ label, .accordion [type=checkbox]:checked ~ label {
background: #F4F4F4;
color: #333;
}
.accordion .content {
list-style: decimal-leading-zero;
padding: 0;
overflow: hidden;
border: 1px solid #fff; /* Make the border match the background so it fades in nicely */
border-top: none;
-webkit-transition: height .7s ease-out;
-moz-transition: height .7s ease-out;
background-color: #fff;
background-image: linear-gradient(90deg, transparent 31px, #6f9b38 31px, #6f9b38 33px, transparent 33px),
linear-gradient(#eee .1em, transparent .1em);
background-size: 100% 20px;
}
.accordion p {
color: #333;
margin: 0 0 10px;
}
.accordion h3 {
color: #cccccc;
padding: 0;
margin: 10px 0;
}
/* Vertical */
.vertical .theme {
overflow: hidden;
margin: 10px 0 0;
position: relative;
}
.vertical label {
padding: 10px 40px 10px 10px;
word-break: keep-all;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.vertical [type=radio]:checked ~ label, .vertical [type=checkbox]:checked ~ label {
border-bottom: 0;
}
.vertical label:hover {
border: 1px solid #cccccc; /* We don't want the border to disappear on hover */
}
.vertical .content {
height: 0;
border-top: 0;
margin: 0;
}
.vertical [type=radio]:checked ~ label ~ .content, .vertical [type=checkbox]:checked ~ label ~ .content {
height: auto;
border: 1px solid #cccccc;
border-top: none;
padding: 20px 10px 20px 65px;
margin: 0;
}
.icon {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px; /* Preferred icon size */
display: inline-block;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;
/* Support for all WebKit browsers. */
-webkit-font-smoothing: antialiased;
/* Support for Safari and Chrome. */
text-rendering: optimizeLegibility;
/* Support for Firefox. */
-moz-osx-font-smoothing: grayscale;
/* Support for IE. */
font-feature-settings: 'liga';
text-decoration: none;
}
.action {
color: #fff;
}
.action:hover {
opacity: 0.4;
-webkit-transition: all .2s ease-out;
-moz-transition: all .2s ease-out;
}