-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(response): add comment doxygen style for documentation (#196)
* docs(Response): add comment doxygen style * test: error page
- Loading branch information
Showing
6 changed files
with
258 additions
and
13 deletions.
There are no files selected for viewing
Empty file.
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<title>404 Not Found</title> | ||
<style> | ||
@import url(http://www.openhiun.com/hangul/nanumbarungothic.css); | ||
|
||
head, | ||
body { | ||
font-family: "Nanum Barun Gothic", Arial; | ||
} | ||
|
||
body { | ||
background-color: #fafafa; | ||
font-family: Arial, sans-serif; | ||
text-align: center; | ||
color: #333; | ||
} | ||
|
||
.error-container { | ||
margin-top: 100px; | ||
} | ||
|
||
.error-container h1 { | ||
font-size: 4em; | ||
transition: 0.3s; | ||
} | ||
|
||
.error-container h1:hover { | ||
text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); | ||
} | ||
|
||
.error-container p { | ||
font-size: 1.5em; | ||
transition: 0.3s; | ||
} | ||
|
||
.error-container p:hover { | ||
text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); | ||
} | ||
|
||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="error-container"> | ||
<h1>404</h1> | ||
<p>Oops! The page you are looking for does not exist.</p> | ||
<a href="/">Go to Home</a> | ||
</div> | ||
</body> | ||
|
||
</html> |
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
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