This repository was archived by the owner on Jul 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
96 lines (84 loc) · 1.87 KB
/
main.css
File metadata and controls
96 lines (84 loc) · 1.87 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
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300&display=swap');
.autocomplete-wrapper {
width: 500px;
height: 210px;
background-color: #f5f5f5;
font-family: 'Inconsolata', monospace;
user-select: none;
position: absolute;
top: 35px;
left: 85px;
z-index: 3;
display: none;
overflow: auto;
box-shadow: 1px 1px 10px;
transition: 0.2s ease-out;
}
.item {
width: calc(100% - 30px);
line-height: 30px;
min-height: 30px;
height: auto;
background-color: transparent;
cursor: pointer;
display: inline-block;
}
.item:hover, .item:focus {
background-color: #ddd;
}
.span {
padding-left: 5px;
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #666;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: #888;
}
.context-menu {
width: 300px;
height: 247px;
background: linear-gradient(to right, #1dcb95, deepskyblue);
z-index: 5;
user-select: none;
position: absolute;
top: 0px;
left: 0px;
box-shadow: 1px 1px 5px;
border-radius: 5px;
display: none;
}
.context-menu-wrapper {
position: absolute;
top: 2px;
left: 2px;
width: calc(100% - 4px);
height: calc(100% - 4px);
background-color: #f5f5f5;
border-radius: 5px;
}
.context-menu-item {
width: 100%;
height: 30px;
background: #f5f5f5;
line-height: 30px;
font-size: 15px;
padding-left: 5px;
transition: 0.5s;
}
.context-menu-item:hover {
background: linear-gradient(to right, #1dcb95, deepskyblue);
text-decoration: underline;
color: white;
font-weight: bold;
padding-left: 10px;
cursor: pointer;
}