32 lines
858 B
HTML
32 lines
858 B
HTML
<!DOCTYPE html>
|
|
<html lang="ko"><head>
|
|
<meta charset="UTF-8">
|
|
<title>loading</title>
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'
|
|
fonts.googleapis.com; font-src 'self' fonts.gstatic.com">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<style>
|
|
body { margin-top: 100px; background-color: #3f51b5; color: #fff; text-align:center; }
|
|
h1 {
|
|
font: 2em 'Roboto', sans-serif;
|
|
margin-bottom: 40px;
|
|
}
|
|
#loading {
|
|
display: inline-block;
|
|
width: 50px;
|
|
height: 50px;
|
|
border: 3px solid rgba(255,255,255,.3);
|
|
border-radius: 50%;
|
|
border-top-color: #fff;
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg);}
|
|
}
|
|
</style>
|
|
<body>
|
|
<h1>Loading...</h1>
|
|
<div id="loading"></div>
|
|
</body>
|
|
</html> |