forked from lalit10/SimplyClip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
120 lines (104 loc) · 1.91 KB
/
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
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
115
116
117
118
119
120
body{
width: 10rem;
height: 10rem;
flex-direction: column;
position: relative;
width: 400px;
}
p{
margin-bottom: 0;
}
#empty-div{
background:white
}
#learn-btn{
position: center;
}
.lead{
color: gray
}
.hide-div{
position: absolute;;
visibility: hidden;
width:0;
height:0;
margin: 0;
padding: 0;
}
ul{
list-style: none;
padding: 0;
margin: 0;
position: relative;
margin-top:0;
overflow: auto;
}
ul li{
margin: 10px;
font-size: 16px;
height: 4rem;
border-bottom: 1px solid;
border-bottom-color: #90e3ff;
box-shadow: 0.3px 0 5px -2.1px rgba(0,0,0,0.5);
cursor: pointer;
white-space: nowrap;
-webkit-border-radius: 10px; /* Setting cross browser rounded edges*/
-moz-border-radius: 10px;
border-radius: 10px;
}
ul li:hover{
background: whitesmoke;
transform: translateX(10px);
}
.content{
overflow: hidden;
display: flex;
justify-content: space-between;
height: 100%;
}
.list-div{
display: contents;
width:20rem;
}
.list-div p{
position: relative;
padding-top:1em;
padding-left: 1.2em;
font-size: 1.1em;
max-width:17rem;
overflow: hidden;
width: 17rem
}
.delete{
width: 20px;
height: 20px;
margin-top: 1.4em;
margin-right:1em;
border: none;
outline: none;
}
.icon_32{
background: url('images/paper-clip_32.png');
height: 32px;
width: 32px;
display:block;
/* Other styles here */
}
#snackbar {
visibility: hidden;
width:94%;
position:fixed;
margin-left: 3%;
background-color: #90e3ff; /* Blue background color */
color: #fff; /* White text color */
text-align: center;
border-radius: 2px;
position: fixed;
z-index: 1;
bottom: 1px;
}
#snackbar.show {
visibility: visible;
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}