-
Notifications
You must be signed in to change notification settings - Fork 5
/
popup.css
81 lines (68 loc) · 1.08 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
body {
font-size: 100%;
margin: 0px;
height: 240px;
width: 340px;
background-color: ghostwhite;
}
h2 {
text-align: center;
font-family: 'Overpass', sans-serif;
margin: 0px;
}
.logo {
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 8px;
}
.card {
background-color: white;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
width: 90%;
height: 80%;
margin: 1em;
float: left;
font-size: .75em;
}
.top {
height: 30%;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
div.hide-scroll {
overflow: hidden;
}
div.scroll {
height: 100%;
overflow: auto;
}
.number-read {
width: 100%
}
.reading-list {
float: right;
margin: 3px;
}
.inner-text {
float: left;
font-size: .5em;
width: 10px;
margin-left: 3px;
}
.big-num {
font-size: 2em;
color: blue;
margin-left: 8px;
float: left;
}
.banner {
height: 45px;
}
.horizontal-separator {
width: 100%;
border-top: 2px groove white;
margin: 2px -2px 2px -2px;
}