-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
87 lines (71 loc) · 1020 Bytes
/
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
body {
color: beige;
}
label {
font-size: 20px;
color: green;
}
h2 {
color: lightgray;
}
div {
width: 400px;
}
input {
margin-bottom: 5px;
}
#folder {
width: 40%;
font-size: 15px;
}
button {
margin-top: 5px;
margin-right: 10px;
background-color: blue;
color: white;
border: 2px solid black;
font-size: 15px;
}
button:hover {
background-color: #000077;
}
#import {
float: left;
}
#import-input {
display: none;
}
#export {
float: right;
}
#import, #export {
margin-bottom: 10px;
}
.site {
font-size: 15px;
width: 100%;
}
img {
border: 2px solid black;
width: inherit;
height: inherit;
filter: invert(0.8);
}
#arrows {
width: 15px;
height: 15px;
vertical-align: middle;
}
.inc {
display: block;
float: right;
width: 15px;
height: 15px;
margin-left: 5px;
margin-right: 5px;
margin-top: auto;
margin-bottom: auto;
}
img:hover {
filter: invert(0.8) blur(1px);
}