-
Notifications
You must be signed in to change notification settings - Fork 4
/
popup.css
65 lines (65 loc) · 1.05 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
* {
margin: 0;
padding: 0;
}
main {
width: 100%;
/* height: 100vh; */
display: grid;
place-items: center;
min-width: 300px;
min-height: 200px;
}
#modal {
display: block;
position: fixed;
width: 100%;
top: 0;
left: 0;
background-color: aliceblue;
flex-grow: 1;
}
.modal-content {
animation-name: popup;
animation-duration: 0.1s;
}
@keyframes popup {
from {
transform: translateY(0%);
opacity: 0;
}
to {
opacity: 1;
}
}
.modal-header {
background-color: wheat;
padding: 0px 15px;
display: flex;
justify-content: space-between;
}
.modal-header h1 {
font-size: 1.2rem;
margin: 10px 0;
}
/* .modalClose {
font-size: 1.2rem;
cursor: pointer;
padding: 0px 15px;
} */
.modal-body {
padding: 15px 25px;
height: max-content;
background-color:whitesmoke;
}
#keywordList {
display: none;
}
.import-export {
margin-top: 98px;
margin-bottom: -200px;
background-color:wheat ;
}
.save {
background-color: whitesmoke;
}