-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (63 loc) · 1.39 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
body{
margin: 0;
background: url(bg.jfif);
background-repeat: no-repeat;
background-size: 100%;
font-family: 'Inter', sans-serif;
}
#context-menu{
position: fixed;
z-index: 999999;
width: 200px;
background: #fff;
border-radius: 5px;
transform: scale(0);
transform-origin: top left;
box-shadow: 0px 5px 15px 0px rgb(0, 0, 0, .24);
}
#context-menu.active{
transform: scale(1);
animation:pop .3s cubic-bezier(0,1,.5,1.08);
}
@keyframes pop{
0%{
transform: scale(0.9);
}
100%{
transform: scale(1);
}
}
#context-menu .item{
padding: 10px 10px;
font-size: 15px;
cursor: pointer;
}
#context-menu .item::selection{
background: none;
}
#context-menu .item:hover{
background: #f2f2f2;
}
#context-menu .item:nth-child(1){
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
#context-menu .item:nth-last-child(1){
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
#context-menu .item:active{
background: #dddddd;
}
#context-menu .item i{
display: inline-block;
margin-right: 5px;
}
.arrow-right .uil-angle-right{
float: right;
}
.divider{
margin: 2px 0px;
border-bottom: 1px solid #ccc;
}