-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.css
130 lines (109 loc) · 1.57 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
color: #0c0a0a;
}
html {
width: 350px;
}
body {
background-color: #f8f8ff;
scrollbar-width: thin;
}
nav {
display: flex;
position: fixed;
top: 0;
justify-content: start;
align-items: center;
width: 100%;
background-color: #ffffff;
border-radius: 5px;
}
nav img {
width: 42px;
margin-left: 12px;
background-color: #f8f8ff;
}
#loader {
margin: 50px 20px 50px 4px;
padding: 4px;
}
.cover-img,
.title,
.author {
margin: 8px;
padding: 4px;
border-radius: 5px;
}
.cover-img {
width: 100%;
height: 200px;
margin-bottom: 2px;
}
.title,
.author {
height: 10px;
background: #777;
}
.author {
width: 50%;
}
.animate {
animation: shimmer 2s infinite;
background: linear-gradient(to right, #f8f8ff 4%, #eeeeee 25%, #f8f8ff 36%);
background-size: 1000px 100%;
}
@keyframes shimmer {
0% {
background-position: -1000px 0;
}
100% {
background-position: 1000px 0;
}
}
ul {
margin: 50px 0;
padding: 2px;
list-style-type: none;
}
li {
margin: 8px;
padding: 4px;
}
li img {
width: 100%;
height: 200px;
margin-bottom: 2px;
border-radius: 5px;
}
li h2 {
font-weight: 400;
font-size: 16px;
color: #424242;
}
li h3 {
font-weight: 300;
color: #adb5bd;
font-size: 12px;
}
li a {
text-decoration: none;
}
li a:hover {
cursor: pointer;
}
footer {
width: 100%;
position: fixed;
bottom: 0;
padding: 4px 2px;
background-color: #ffffff;
}
footer h3 {
padding: 4px 2px;
text-align: center;
font-weight: 400;
}