-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
61 lines (51 loc) · 774 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
body {
background: #f5f5f5;
color: #333;
font-size: 16px;
}
.container {
width: 450px;
padding: 20px;
}
h3 {
font-size: 14px;
padding: 10px;
border-bottom: 2px solid #333;
}
.wrapper {
display: flex;
}
.wrapper input {
flex: 1;
background: #f5f5f5;
border-radius: 6px;
border: 1px solid #ddd;
padding: 10px;
font-size: 16px;
}
.wrapper button, li button {
margin-left: 10px;
width: 75px;
background: none;
font-size: 16px;
border: none;
border-radius: 6px;
cursor: pointer;
}
.wrapper button:hover {
color: #0375a7;
}
li button:hover {
color: #ac0505;
}
ul {
padding: 0;
margin: 0;
}
ul li {
display: flex;
list-style: none;
}
ul li p {
flex: 1;
}