Skip to content

Commit 96dd84a

Browse files
committed
Merge
1 parent e24253f commit 96dd84a

20 files changed

+195
-132
lines changed

.DS_Store

6 KB
Binary file not shown.

css/game.css

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
* {
2+
outline: none;
3+
margin-right: 0;
4+
}
5+
6+
#container {
7+
position: absolute;
8+
top: 0;
9+
left: 0;
10+
width: 94%;
11+
height: 100%;
12+
}
13+
14+
.button {
15+
position: absolute;
16+
width: 7vmin;
17+
height: 7vmin;
18+
border: 1px solid black;
19+
cursor: pointer;
20+
background-color: transparent;
21+
padding: 1px;
22+
text-align: center;
23+
color: white;
24+
25+
/* 더블 클릭시 드래그 처리 방지 */
26+
-webkit-user-select: none;
27+
-moz-user-select: none;
28+
-ms-user-select: none;
29+
user-select: none
30+
}
31+
32+
#toSword {
33+
right: 1vmax;
34+
top: 1vmin;
35+
}
36+
37+
#toAxe {
38+
right: 1vmax;
39+
top: 11vmin;
40+
}
41+
42+
#toKatana {
43+
right: 1vmax;
44+
top: 21vmin;
45+
}
46+
47+
img {
48+
width: 100%;
49+
height: 100%;
50+
object-fit: cover;
51+
}
52+
53+
div {
54+
border-radius: 5px;
55+
}

index.css css/index.css

File renamed without changes.

game.css

-53
This file was deleted.

0 commit comments

Comments
 (0)