bitque/jirs-client/js/template.ejs

41 lines
1.0 KiB
Plaintext
Raw Normal View History

2020-03-30 08:16:26 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2020-03-30 14:26:25 +02:00
<link rel="icon" href="/favicon.png">
<link rel="icon" href="/logo.svg">
2020-03-30 08:16:26 +02:00
<title>JIRS</title>
<link rel="stylesheet" type="text/css" href="/styles.css">
2020-03-30 08:16:26 +02:00
</head>
<body>
2020-10-18 10:35:41 +02:00
<main id="app">
<style>
.lds-hourglass {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
}
.lds-hourglass:after {
content: " ";
display: block;
border-radius: 50%;
width: 0;
height: 0;
margin: 8px;
box-sizing: border-box;
border: 32px solid #fff;
border-color: #fff transparent #fff transparent;
animation: lds-hourglass 1.2s infinite;
}
@keyframes lds-hourglass {
0% { transform: rotate(0); animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
50% { transform: rotate(900deg); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
100% { transform: rotate(1800deg); } }
</style>
<div class="lds-hourglass"></div>
</main>
2020-03-30 08:16:26 +02:00
</body>
</html>