-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.css
More file actions
114 lines (106 loc) · 1.83 KB
/
popup.css
File metadata and controls
114 lines (106 loc) · 1.83 KB
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
*{
box-sizing: content-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
/* background: radial-gradient(ellipse at top, #ffde7d, transparent),
radial-gradient(ellipse at bottom, #ccf6c8, transparent); */
/* margin: 50px auto; */
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
ul {
list-style: none;
margin: 0;
font-size : 20px;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
height: 400px;
width: 400px;
border-radius: 30px;
background-color: white;
}
.title{
text-align: center;
/* margin: 50px 0px; */
font-size: 40px;
}
.list{
padding: 0px;
flex-basis: 80%;
}
button{
cursor: pointer;
margin: 8px;
}
.reset{
border: none;
}
.reset img{
height: 50px;
height: 50px;
}
.input img{
width: 25px;
height: 25px;
}
.menu img{
height: 30px;
width: 30px;
}
img{
display: inline-block;
overflow: hidden;
object-fit: fill;
}
.item {
text-align: center;
display: block;
margin : 10px 0;
}
.item--check {
transform: scale(1.5);
margin-right: 5px;
}
.item--title {
font-size : 20px;
margin : 0 10px;
border: none;
}
.list--remove {
visibility: hidden;
border: none;
background-color: white;
font-size: 20px;
}
.item:hover > .list--remove{
visibility: visible;
}
.item--title:focus ~ .list--remove{
visibility: visible;
}
.input{
display: flex;
margin: 10px;
/*justify-content: center;
align-items: center; */
}
#input{
width: 270px;
height: 26px;
border: 2px solid #1b1b1b;
color: #1b1b1b;
font: inherit;
text-align: center;
margin: 8px 0px;
padding: 2px;
}
#button{
background-color: #f9f9f9;
width: 23px;
}