-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.css
70 lines (59 loc) · 912 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
body {
padding: 3px;
border: 2px solid black;
border-radius: 4px;
width: 350px;
font-size: 15px;
background-color: #F1FFF3;
}
label {
display: block;
border-radius: 4px;
background-color: #FFFEF1;
padding: 2px;
}
#msg {
font-weight: bold;
}
hr {
border: none;
height: 2px;
background-color: black;
color: black;
}
#disurls-header {
font-weight: bold;
margin: 3px;
}
#disurls-list {
padding: 3px;
margin: auto;
width: 95%;
}
.blurl {
width: 100%;
cursor: pointer;
display: table;
padding:0;
}
.blurl:hover {
background-color: red;
}
p {
margin: 3px;
}
#translate-key, #tts-key {
width: 2em;
}
#reset, #edit-blacklist {
border: 1px solid black;
border-radius: 4px;
padding: 2px;
cursor: pointer;
text-align: center;
background-color: white;
font-weight: bold;
}
#reset:hover, #edit-blacklist:hover {
background-color: #d1e6ff;
}