snowflake.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Snowflake</title>
  5. <meta content="text/html;charset=utf-8" http-equiv="Content-Type">
  6. <script type="text/javascript" src="snowflake.js"></script>
  7. <style>
  8. * {
  9. box-sizing: border-box;
  10. -webkit-transition: all 0.3s;
  11. -moz-transition: all 0.3s;
  12. transition: all 0.3s;
  13. }
  14. body {
  15. position: absolute;
  16. width: 100%; height: 100%; top: 0; margin: 0 auto;
  17. background-color: #424;
  18. color: #000;
  19. text-align: center;
  20. font-size: 24px;
  21. font-family: monospace;
  22. background-image: url('koch.jpg');
  23. }
  24. textarea {
  25. background-color: rgba(0,0,0,0.8);
  26. color: #fff;
  27. resize: none;
  28. }
  29. .chatarea {
  30. position: relative; border: none;
  31. width: 50%; min-width: 40em;
  32. padding: 0.5em; margin: auto;
  33. }
  34. .active { background-color: rgba(0,50,0,0.8); }
  35. #msglog {
  36. display: block;
  37. width: 100%;
  38. min-height: 40em;
  39. margin-bottom: 1em;
  40. padding: 8px;
  41. }
  42. #status {
  43. background-color: rgba(0,0,0,0.9); color: #999;
  44. margin: 8px 0; padding: 8px 1em; cursor: default;
  45. font-size: 12px;
  46. text-align: left;
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <div class="chatarea">
  52. <div id="status">
  53. Timeout...
  54. </div>
  55. <textarea id="msglog" readonly>
  56. </textarea>
  57. </div>
  58. </body>
  59. </html>