95 lines
2.2 KiB
HTML
95 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
<link rel="icon" href="/static/favicon.ico">
|
|
<title>SDL DEMO</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap-icons.css" />
|
|
<style>
|
|
*, *::before, *::after {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
body {
|
|
display: flex;
|
|
margin: 0;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
font-size: 14px;
|
|
font-family: SamsungOneKorean, 돋움;
|
|
color: #444;
|
|
background-color: #f8f9fa;
|
|
}
|
|
div.div-center {
|
|
width: 320px;
|
|
height: 40%;
|
|
overflow: auto;
|
|
margin: auto;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
}
|
|
.msg-icon {
|
|
padding: 30px 10px;
|
|
width: 80px;
|
|
float: left;
|
|
color:#dc3545;
|
|
}
|
|
.icon-size-48 {
|
|
font-size: 48px;
|
|
}
|
|
.msg-text {
|
|
float: left;
|
|
padding-top: 10px;
|
|
width: calc(100% - 80px);
|
|
}
|
|
h3 {
|
|
font-size: 1.4rem;
|
|
font-weight: 700;
|
|
}
|
|
h4 {
|
|
font-size: 1.2rem;
|
|
font-weight: 600;
|
|
}
|
|
footer {
|
|
position: absolute;
|
|
width: 100%;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 20px 50px;
|
|
display: flex;
|
|
border-top: 1px solid #e4eaec;
|
|
}
|
|
footer div {
|
|
padding: 0 50px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="div-center">
|
|
<div class="msg-box">
|
|
<div class="msg-icon text-center">
|
|
<i class="bi bi-x-circle icon-size-48"></i>
|
|
</div>
|
|
<div class="msg-text">
|
|
<h3>No response from server</h3>
|
|
<h4>try again</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<footer>
|
|
<div>
|
|
<span>© Samsung</span>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|