-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyleMain.css
More file actions
47 lines (43 loc) · 871 Bytes
/
styleMain.css
File metadata and controls
47 lines (43 loc) · 871 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
body{
overflow-x:hidden;
overflow-y:hidden;
margin: 0;
-ms-user-select: none;
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
-webkit-user-drag: none;
-khtml-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
-user-drag: none;
}
#canvasDiv{
z-index: 1;
width: 100vw;
height: 56.25vw;
position: relative;
background-color: #000;
}
#backgroundImg{
width: 100vw;
height: 56.25vw;
z-index: 1;
position: absolute;
}
#button{
z-index: 2;
position: absolute;
text-align: center;
width: 25vw;
height: 6vw;
border-radius: 30px;
right: 2vw;
top: 30vw;
background-color: rgba(0,0,0,0);
border: 0;
color: #FF5FA2;
font-size: 8vw;
font-family: 'Nanum Pen Script', cursive;
}