brainfuck.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. .memorycell
  2. {
  3. border-radius: 5px;
  4. margin: 2px;
  5. text-align: center;
  6. background-color: #707070;
  7. display: inline-block;
  8. width: calc(10% - 4px);
  9. }
  10. @media (max-width: 768px)
  11. {
  12. .memorycell
  13. {
  14. width: calc(20% - 4px);
  15. }
  16. }
  17. .active_cell
  18. {
  19. background-color: #A0A0A0;
  20. }
  21. .active_code
  22. {
  23. color: #C02020;
  24. background-color: #A0A0A0;
  25. }
  26. #input
  27. {
  28. margin-top: 6px;
  29. width: 100%;
  30. height: 200px;
  31. resize: none;
  32. border-radius: 5px;
  33. border-style: none;
  34. box-sizing: border-box;
  35. padding: 10px;
  36. }
  37. #outputcode
  38. {
  39. margin-bottom: 6px;
  40. width: 100%;
  41. min-height: 100px;
  42. resize: none;
  43. color: #000000;
  44. background-color: #A0A0A0;
  45. border-radius: 5px;
  46. padding: 10px;
  47. word-wrap: break-word;
  48. }
  49. #output
  50. {
  51. margin-bottom: 6px;
  52. width: 100%;
  53. min-height: 100px;
  54. resize: none;
  55. color: #000000;
  56. background-color: #A0A0A0;
  57. border-radius: 5px;
  58. padding: 10px;
  59. word-wrap: break-word;
  60. }
  61. #delay
  62. {
  63. width: 100%;
  64. -webkit-appearance: none;
  65. border-radius: 5px;
  66. height: 10px;
  67. background-color: #D0D0D0;
  68. opacity: 0.7;
  69. -webkit-transition: 0.2s;
  70. transition: opacity 0.2s;
  71. }
  72. #delay::-webkit-slider-thumb
  73. {
  74. -webkit-appearance: none;
  75. appearance: none;
  76. width: 10px;
  77. height: 20px;
  78. border-radius: 5px;
  79. background: #601010;
  80. cursor: pointer;
  81. }
  82. #delay::-moz-range-thumb
  83. {
  84. -webkit-appearance: none;
  85. appearance: none;
  86. width: 10px;
  87. height: 20px;
  88. border-radius: 5px;
  89. background: #601010;
  90. cursor: pointer;
  91. }
  92. #delay:hover
  93. {
  94. opacity: 1;
  95. }
  96. #delaydiv
  97. {
  98. background-color: #707070;
  99. width: 100%;
  100. padding-top: 6px;
  101. padding-left: 5px;
  102. padding-right: 5px;
  103. padding-bottom: 5px;
  104. margin-top: 6px;
  105. border-radius: 5px;
  106. }
  107. #reset
  108. {
  109. width: calc(50% - 2px);
  110. float: left;
  111. }
  112. #start
  113. {
  114. margin-right: 4px;
  115. width: calc(50% - 2px);
  116. float: left;
  117. }