blob: 45a53fc0bf02edfb3f98db68e51e7eb3eae2a24a (
plain)
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
|
@keyframes popup {
0%{
transform: scale(0.5);
}
90%{
transform: scale(1.1);
}
100%{
transform: scale(1.0);
}
}
.arr{
border-radius: 6px;
border-style: dashed;
border-color: #c9c9c9;
border-width: 2px;
display: inline-block;
padding-right: 3em;
margin-right: 15px;
margin-bottom: 5px;
position: relative;
animation: popup 0.2s ease;
}
.add-button{
background-image: url("../assets/plus-circle-solid.svg");
opacity: 0.7;
width: 2em;
height: 2em;
display: inline-block;
left: 0;
}
.add-button:hover{
opacity: 1
}
.del-button{
background-image: url("../assets/trash-alt-regular.svg");
background-repeat: no-repeat;
opacity: 0.7;
width: 2em;
height: 2em;
position: absolute;
right: 0.5em;
bottom: 0.5em;
}
.del-button:hover{
opacity: 1
}
|