-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
141 lines (100 loc) · 1.6 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
body{
width: 300px;
height: 250px;
}
table, th, td{
border-bottom: 1px #c9e4e5;
border-collapse: collapse;
}
th {
background-color: #0d36db;
color: white;
text-align: left;
}
table{
width: 100%;
}
tr:hover {background-color: #f5f5f5;}
tr:nth-child(even){background-color: #cdd6f7}
#subButton{
background-color: #8080ff;
color: white;
}
#configButton{
background-color: #8080ff;
color: white;
}
#watchTable{
padding-top:10px;
height: 150px;
overflow: auto;
}
#historyDiv{
height: 0;
width: 100%;
z-index: 1;
background-color: white;
position: fixed;
bottom: 0;
left: 0;
transition: 0.5s;
overflow: auto;
border: solid 2px #8080ff;
}
.numInput{
width: 100%;
box-sizing: border-box;
-webkit-box-sizing:border-box;
-moz-box-sizing: border-box;
}
#history{
position: absolute;
font-size: 12px;
width: 100%;
background-color: #8080ff;
border: 2px solid #8080ff;
transition-duration: 0.4s;
color: white;
text-align: center;
bottom: 0;
left: 0;
}
#history:hover{
background-color: white;
color: black;
}
#grid-containor{
display: grid;
grid-template-columns: auto auto auto;
width: 100%;
height: 120px;
overflow: scroll;
}
.gridItem{
width: 100px;
height: 60px;
text-align: center;
}
.closeBtn{
color: #5c5c60!important;
text-decoration: none!important;
top: 0;
right: 0;
font-size: 15px;
margin-left: 300px;
}
.imgText{
font-size: 10px;
display: block;
margin-bottom: 0px;
margin-top: 0px;
}
img{
height: 20px;
width: 20px;
}
.message{
color: #c5cccb;
font-size: 10px;
display: block;
}