-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
172 additions
and
212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# FE_hackathon | ||
|
||
12월 27일에 해커톤행사때 만든 시험지를 훔치는 게임입니다. | ||
12월 27일에 해커톤 행사 때 만든 시험지를 훔치는 게임입니다. | ||
|
||
버그를 발견하시거나 피드백해주실 부분이 있으면 언제나 환영(?)합니다. | ||
|
||
제작자:윤, 숨, 헤드, 세라, 솔로몬 | ||
제작자 : 윤, 숨, 헤드, 세라, 솔로몬 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,41 @@ | ||
@import url("./reset.css"); | ||
@import url("./common.css"); | ||
|
||
.desk { | ||
top: 33%; | ||
left: 34%; | ||
top: 33%; | ||
left: 34%; | ||
} | ||
|
||
.bag { | ||
top: 46%; | ||
left: 48%; | ||
top: 46%; | ||
left: 48%; | ||
} | ||
|
||
.cabinet { | ||
top: 57%; | ||
left: 93%; | ||
top: 57%; | ||
left: 93%; | ||
} | ||
|
||
.under { | ||
top: 53%; | ||
left: 30%; | ||
top: 53%; | ||
left: 30%; | ||
} | ||
|
||
.lock { | ||
cursor: pointer; | ||
position: absolute; | ||
background: #808080; | ||
background-image: url('../photo/lock.png'); | ||
background-size: 100% 100%; | ||
width: 3.5%; | ||
height: 2.5%; | ||
border: 1px solid #808080; | ||
border-radius: 50%; | ||
opacity: 0.2; | ||
top: 53.4%; | ||
left: 93%; | ||
cursor: pointer; | ||
position: absolute; | ||
background: #808080; | ||
background-image: url('../photo/lock.png'); | ||
background-size: 100% 100%; | ||
width: 3.5%; | ||
height: 2.5%; | ||
border: 1px solid #808080; | ||
border-radius: 50%; | ||
opacity: 0.2; | ||
top: 53.4%; | ||
left: 93%; | ||
} | ||
|
||
.lock:hover { | ||
opacity: 1; | ||
opacity: 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
@import url("./reset.css"); | ||
@import url("./common.css"); | ||
|
||
.container p { | ||
color: #fff; | ||
font-size: 50px; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,55 @@ | ||
@import url("./reset.css"); | ||
@import url("./common.css"); | ||
|
||
header{ | ||
padding:20vh; | ||
font-size:14vh; | ||
color:#fff; | ||
header { | ||
padding: 20vh; | ||
font-size: 14vh; | ||
color: #fff; | ||
} | ||
|
||
.btn{ | ||
width: 14vh; | ||
height: 2vh; | ||
padding:2vh; | ||
border:1px solid #fff; | ||
margin:1vh auto; | ||
font-size:3vh; | ||
.btn { | ||
width: 14vh; | ||
height: 2vh; | ||
padding: 2vh; | ||
border: 1px solid #fff; | ||
margin: 1vh auto; | ||
font-size: 3vh; | ||
} | ||
|
||
.wholeBody{ | ||
padding-top:4vh; | ||
.wholeBody { | ||
padding-top: 4vh; | ||
} | ||
|
||
.game-start{ | ||
cursor: pointer; | ||
color:#fff; | ||
.game-start { | ||
cursor: pointer; | ||
color: #fff; | ||
} | ||
|
||
.game-start:hover { | ||
color:#000; | ||
background-color:#fff; | ||
color: #000; | ||
background-color: #fff; | ||
} | ||
|
||
.game-rule-container{ | ||
cursor: pointer; | ||
color:#fff; | ||
.game-rule-container { | ||
cursor: pointer; | ||
color: #fff; | ||
} | ||
.game-rule-container:hover{ | ||
color:#000; | ||
background-color:#fff; | ||
|
||
.game-rule-container:hover { | ||
color: #000; | ||
background-color: #fff; | ||
} | ||
.game-rule-container:hover + .game-rule { | ||
opacity:1; | ||
|
||
.game-rule-container:hover+.game-rule { | ||
opacity: 1; | ||
} | ||
|
||
.game-rule { | ||
opacity:0; | ||
width:50vh; | ||
padding:2vh; | ||
border:1px solid #fff; | ||
margin:1vh auto; | ||
font-size:3vh; | ||
color:#fff; | ||
opacity: 0; | ||
width: 50vh; | ||
padding: 2vh; | ||
border: 1px solid #fff; | ||
margin: 1vh auto; | ||
font-size: 3vh; | ||
color: #fff; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.