forked from visualpython/visualpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnippets.css
More file actions
59 lines (49 loc) · 969 Bytes
/
Copy pathsnippets.css
File metadata and controls
59 lines (49 loc) · 969 Bytes
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
.vp-sn {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1200;
background-color: rgba(0,0,0,.4);
}
.vp-sn-container {
position: relative;
left: 50%;
top: 50%;
transform:translate(-50%, -50%);
min-width: 400px;
min-height: 400px;
width: 95%;
height: 95%;
background-color: white;
}
.vp-sn-title {
height: 30px;
padding: 5px 0px 5px 10px;
background-color: #EEE;
border: 1px solid #ddd;;
display: flex;
flex-direction: row;
position: relative;
font-weight: 700;
}
.vp-sn-close {
position: fixed;
z-index: 3;
right: 5px;
width: 20px;
height: 20px;
line-height: 20px;
top: 5px;
text-align: center;
cursor: pointer;
}
.vp-sn-body {
width: 100%;
height: calc(100% - 30px);
padding: 10px;
display: grid;
grid-row-gap: 5px;
grid-template-rows: 35px 30px 60% calc(40% - 80px);
}