UNPKG

coffeescript-ui

Version:
39 lines (36 loc) 1.13 kB
<!-- 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 --> <!DOCTYPE html> <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> </head> <body class="cui-body"> <div id="cui-demo-splash"> CUI.Demo </div> <script src="cui-demo.js" type="text/javascript" charset="utf-8"></script> </body> </html>