-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (56 loc) · 1.2 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
.srclist-wrapper {
margin-top: 0 !important;
margin-bottom: 15px;
text-transform: uppercase;
font-family: 'nyt-franklin', helvetica, arial, sans-serif !important;
font-weight: 500 !important;
font-size: 14px !important;
line-height: 20px !important;
color: #444;
width: calc(100% - 40px);
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.srclist-wrapper em {
font-weight: 600;
}
.srclist-wrapper summary:focus {
outline: none;
}
.srclist-number {
padding: 0 5px;
}
.scitimes-srclist {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 8px;
margin: 5px 0 15px 0;
}
.scitimes-srclist .scitimes-source {
display: inline-block;
width: 100%;
box-sizing: border-box;
border: 1px solid #0000001f;
border-radius: 4px;
padding: 5px;
}
.scitimes-srclist .src-title {
text-transform: initial;
font-size: .85em;
}
.scitimes-loader {
display: inline-block;
vertical-align: text-bottom;
margin-right: 5px;
width: 15px;
height: 15px;
border: 2px solid #eee;
border-top: 2px solid #888;
border-radius: 50%;
animation: spin 1.5s ease-out infinite;
}
@keyframes spin {
0% { transform: rotate(200deg); }
100% { transform: rotate(560deg); }
}