You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
1.3 KiB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  1. @color: #efefef;
  2. html, body{
  3. margin: 0;
  4. padding: 0;
  5. height: auto;
  6. width: 100%;
  7. }
  8. body{
  9. background-color: #333;
  10. font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  11. font-weight: 300;
  12. }
  13. .transition{
  14. -webkit-transition: all .5s ease-in-out; /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6 */
  15. transition: all .5s ease-in-out;
  16. }
  17. .bottomRight{
  18. position: fixed;
  19. left: 0;
  20. bottom: 0;
  21. z-index: 9999;
  22. background: #666;
  23. padding: 10px;
  24. button{
  25. margin-left: 10px;
  26. margin-right: 10px;
  27. }
  28. input{
  29. min-width: 200px;
  30. }
  31. }
  32. #controlBar{
  33. position: fixed;
  34. top: 0;
  35. width: 100%;
  36. margin: 0 auto;
  37. text-align: center;
  38. z-index: 999;
  39. // display: none;
  40. &.visible{
  41. display: block;
  42. }
  43. .lefting{
  44. background: rgba(20,20,20, .5);
  45. color: white;
  46. float: left;
  47. padding: 10px;
  48. }
  49. }
  50. #honeyComb{
  51. canvas{
  52. position: absolute;
  53. display: none;
  54. height: 100%;
  55. &.visible{
  56. display: block;
  57. }
  58. }
  59. }
  60. .honeycombIndex{
  61. position: fixed;
  62. top: 0;
  63. left: 0;
  64. background-color: rgba(185, 5, 198, 0.29);
  65. padding: 20px;
  66. z-index: 999;
  67. font-size: 50px;
  68. }
  69. .honeycombScore:extend(.honeycombIndex){
  70. top: 120px;
  71. background-color: rgba(175, 0, 198, 0.29);
  72. }
  73. .canvasRendered{
  74. background-color: #333;
  75. }