main.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*********************************************
  2. * GLOBAL
  3. *********************************************/
  4. body, html {
  5. overflow: hidden;
  6. font-family: 'Comic Sans MS', Arial, sans-serif;
  7. color: #fff;
  8. font-size: 11px;
  9. background: #010c12;
  10. }
  11. .no-canvas {
  12. color: #999999;
  13. font-size: 24px;
  14. text-align: center;
  15. margin-top: 150px;
  16. }
  17. /*********************************************
  18. * EXPERIMENT STYLES
  19. *********************************************/
  20. canvas {
  21. border: 6px #333333 solid;
  22. cursor: crosshair;
  23. z-index: 1;
  24. }
  25. #background {
  26. border: none;
  27. z-index: 0;
  28. }
  29. .ui {
  30. font-family: 'Comic Sans MS', Helvetica, sans-serif;
  31. font-size: 10px;
  32. color: #999999;
  33. text-align: left;
  34. padding: 8px;
  35. background-color: rgba(0,0,0,0.4);
  36. float: left;
  37. }
  38. #status {
  39. width: 884px;
  40. height: 15px;
  41. padding: 8px;
  42. display: none;
  43. position: absolute;
  44. z-index: 2;
  45. }
  46. #status span {
  47. color: #bbbbbb;
  48. font-weight: bold;
  49. margin-right: 5px;
  50. }
  51. #status .fps {
  52. float: right;
  53. }
  54. #panels {
  55. width: 100%;
  56. position: absolute;
  57. z-index: 3;
  58. }
  59. #message {
  60. padding: 150px 300px 0 60px;
  61. width: 100%;
  62. height: 100%;
  63. box-sizing: border-box;
  64. font-family: 'Comic Sans MS', Helvetica, Arial, sans-serif;
  65. font-size: 20px;
  66. text-transform: lowercase;
  67. line-height: 1.4;
  68. }
  69. #message .start-button {
  70. display: inline-block;
  71. padding: 10px 20px;
  72. font-size: 2em;
  73. font-family: inherit;
  74. border-radius: 2px;
  75. margin-top: 20px;
  76. background-color: #eee;
  77. color: #222;
  78. font-size: 1.6em;
  79. text-transform: inherit;
  80. transition: all .18s linear;
  81. outline: 0;
  82. border: 0;
  83. cursor: pointer;
  84. -webkit-appearance: none;
  85. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  86. }
  87. #message .start-button:hover {
  88. background-color: #fff;
  89. }
  90. #message p {
  91. margin-bottom: 20px;
  92. }
  93. #message a {
  94. color: #fff;
  95. text-decoration: none;
  96. }
  97. #message a:hover {
  98. text-decoration: underline;
  99. }
  100. .ui h2 {
  101. margin-bottom: 20px;
  102. color: #eeeeee;
  103. }
  104. .ui p em {
  105. color: #f5f5f5;
  106. }
  107. .ui ol {
  108. margin: 10px 0;
  109. padding-left: 1em;
  110. }
  111. .ui ol li {
  112. margin: 0 0 2px 0;
  113. list-style: unset;
  114. }
  115. .ui a.external {
  116. outline: none;
  117. font-family: 'Comic Sans MS';
  118. font-size: 1em;
  119. font-weight: bold;
  120. text-decoration: none;
  121. color: #bbbbbb;
  122. display: inline;
  123. padding: 0;
  124. }
  125. .ui a.external:hover {
  126. color: #ffffff;
  127. }
  128. @media screen and (max-width: 600px) {
  129. #message {
  130. padding: 60px 40px;
  131. }
  132. }