-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
110 lines (94 loc) · 1.56 KB
/
popup.css
File metadata and controls
110 lines (94 loc) · 1.56 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
* {
margin: 0px;
padding: 0px;
}
html {
width: 300px;
height: 300px;
}
body {
width: 100%;
height: 100%;
}
.container {
width: 100%;
height: 100%;
background-color: rgb(243, 244, 245);
}
.buttonBox {
width: 100%;
height: 20%;
background-color: rgb(31, 49 ,70);
box-shadow: 0px 5px 25px #000;
border-radius: 3px;
}
.buttonBox button {
margin: 15px 22.5px;
outline: none;
background-color: rgb(255, 59, 111);
width: 35%;
height: 50%;
border: none;
border-radius: 20px;
font-size: 16px;
font-weight: 100;
color: #FFF;
}
.rememberBox {
width: 100%;
height: 215px;
}
.rememberBox p {
font-size: 20px;
font-weight: bolder;
color: rgb(11, 6, 13);
}
.rememberBox ul {
width: 90%;
height: 100%;
margin: 20px 5% 0px 5%;
list-style: none;
overflow: auto;
}
.rememberBox ul li {
width: 100%;
height: 10%;
background: #FFF;
border-radius: 5px;
margin-top: 5px;
}
.rememberBox ul li a {
display: inline-block;
font-size: 14px;
overflow: hidden;
width: 80%;
margin: 0px 5%;
height: 24px;
line-height: 24px;
-webkit-transition: color 0.5s;
}
.rememberBox ul li button {
background-color: #FFF;
vertical-align: top;
width: 10%;
height: 20px;
margin: 2px 0px;
outline: none;
background-repeat: no-repeat;
background-size: contain;
border: none;
}
a.delete {
text-decoration: line-through;
color: rgb(228, 32, 91)
}
a.normal {
color: rgb(114, 147, 245);
text-decoration: none;
}
button.delete {
background-image: url(delete.png);
}
button.undo {
background-image: url(undo.png);
}