coffeescript-ui
Version:
Coffeescript User Interface System
41 lines (37 loc) • 1.27 kB
HTML
<!-- coffeescript-ui - Coffeescript User Interface System (CUI)
Copyright (c) 2013 - 2016 Programmfabrik GmbH
MIT Licence
https://github.com/programmfabrik/coffeescript-ui, http://www.coffeescript-ui.org -->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Demo - Coffeescript UI</title>
<style type="text/css">
html {
overflow: hidden;
}
#cui-demo-splash {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
align-items: center;
justify-content: center;
font: bold 40px sans-serif;
color: black;
background: white;
transition: opacity 1s;
z-index: 1;
}
</style>
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body class="cui-body">
<div id="cui-demo-splash">
CUI.Demo
</div>
<script src="public/cui-demo.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>