-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (62 loc) · 1.09 KB
/
style.css
File metadata and controls
67 lines (62 loc) · 1.09 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
html, body,main{
margin:0;
padding:0;
overflow:hidden;
}
body{
display:flex;
background-color:transparent;
padding:0.1%;
}
.container{
margin:auto;
background-color:black;
overflow:hidden;
width:99.6%;
height:99.6%;
display:flex;
-webkit-app-region: drag;
}
.img{
overflow:hidden;
cursor:grab;
object-fit:contain;
object-position: 0%;
height:100%;
}
.load_pic_button{
-webkit-app-region: no-drag;
position:absolute;
z-index:15;
background-image:url("file.svg");
top:5px;
left:5px;
width:30px;
height:30px;
background-size:70%;
background-repeat: no-repeat;
background-position: center;
cursor:pointer;
border-radius:50%;
border:none;
background-color:transparent;
opacity:0.1;
}
.load_pic_button:hover{
opacity:1;
border: 1px dashed white;
}
.load_pic_text{
-webkit-app-region: no-drag;
margin:auto;
color:white;
cursor:pointer;
font-size:26px;
padding:5px;
}
.load_pic_text:hover{
border:2px dashed white;
}
.hidden{
display:none;
}