diustyles.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. html, body {
  2. height: 100%;
  3. }
  4. body {
  5. background: #efefef;
  6. color: hsl(240,30,10);
  7. letter-spacing: 0.125em;
  8. text-align: center;
  9. /* text-transform: uppercase; */
  10. -webkit-touch-callout: none; /* iOS Safari */
  11. -webkit-user-select: none; /* Safari */
  12. -khtml-user-select: none; /* Konqueror HTML */
  13. -moz-user-select: none; /* Firefox */
  14. -ms-user-select: none; /* Internet Explorer/Edge */
  15. user-select: none; /* Non-prefixed version, currently
  16. supported by Chrome and Opera */
  17. overflow: hidden;
  18. }
  19. h1 {
  20. margin: 3em 0 2em;
  21. }
  22. p:focus {
  23. border:0;
  24. }
  25. /***********/
  26. /*
  27. A horrible hack but there's no way to turn
  28. off text highlighting in a text area.
  29. Instead, make the highlight color the same as the
  30. background and font color.
  31. I still see artifacts but they're much subtler then
  32. the default text highlighting.
  33. */
  34. /*
  35. ::selection {
  36. background-color: rgb(255,255,255,1);
  37. color: #444444;
  38. }
  39. ::-moz-selection {
  40. background-color: rgb(255,255,255,1);
  41. color: #444444;
  42. }
  43. ::-o-selection {
  44. background-color: rgb(255,255,255,1);
  45. color: #444444;
  46. }
  47. ::-ms-selection {
  48. background-color: rgb(255,255,255,1);
  49. color: #444444;
  50. }
  51. ::-webkit-selection {
  52. background-color: rgb(255,255,255,1);
  53. color: #444444;
  54. }
  55. */
  56. .statuslogin {
  57. font-size:20px;
  58. resize:none;
  59. background: #f7f7f7;
  60. overflow:hidden;
  61. overflow-x:hidden;
  62. overflow-y:hidden;
  63. word-wrap:off;
  64. -webkit-user-select: none;
  65. -webkit-touch-callout: none;
  66. -khtml-user-select: none;
  67. -ms-user-select: none;
  68. -o-user-select: none;
  69. user-select: none;
  70. -moz-user-select: none;
  71. }
  72. .statusmain {
  73. font-size:20px;
  74. resize:none;
  75. background: #f7f7f7;
  76. overflow:auto;
  77. overflow-x:hidden;
  78. overflow-y:hidden;
  79. word-wrap:off;
  80. -webkit-user-select: none;
  81. -webkit-touch-callout: none;
  82. -khtml-user-select: none;
  83. -ms-user-select: none;
  84. -o-user-select: none;
  85. user-select: none;
  86. cursor:default;
  87. -moz-user-select: none;
  88. }
  89. .row {
  90. height: 80px;
  91. }
  92. .col {
  93. width: 80px;
  94. }
  95. .bdisp {
  96. font-size: 20px;
  97. font-weight: bold;
  98. color: #444444;
  99. margin-top: 15px;
  100. margin-right: 15px;
  101. margin-left: auto;
  102. background: none;
  103. border: none;
  104. }
  105. .bdisp:focus {
  106. outline:0;
  107. }
  108. .bmsg {
  109. font-size: 20px;
  110. font-weight: bold;
  111. color: #444444;
  112. background: #ADD8E6;
  113. border: solid 2px #888888;
  114. box-shadow: 3px 3px 0px #aaaaaa;
  115. }
  116. .bmsg:focus {
  117. outline:0;
  118. }
  119. .bstatus {
  120. font-size: 20px;
  121. font-weight: bold;
  122. color: #444444;
  123. border: solid 2px #888888;
  124. box-shadow: 3px 3px 0px #aaaaaa;
  125. }
  126. .bstatus:focus {
  127. outline:0;
  128. }
  129. .bdrop {
  130. /* font-size: 15px; */
  131. font-size: 19px;
  132. font-weight: bold;
  133. color: #444444;
  134. background: none;
  135. border: solid 2px #888888;
  136. box-shadow: 3px 3px 0px #aaaaaa;
  137. }
  138. .bdrop:focus {
  139. outline:0;
  140. }
  141. .bdropinp {
  142. font-size: 22px;
  143. font-weight: bold;
  144. color: #444444;
  145. background: none;
  146. border: solid 2px #888888;
  147. box-shadow: 3px 3px 0px #aaaaaa;
  148. -webkit-transition: margin-left 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  149. -moz-transition: margin-left 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  150. transition: margin-left 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  151. }
  152. .bdropinp.ltyellow {
  153. background: #ffffe0;
  154. }
  155. .bdropinp.mny {
  156. color: #446444;
  157. }
  158. .bdropinp.logout {
  159. color: #aa4444;
  160. }
  161. .bdropinp.highlight {
  162. background: #aaaaff;
  163. }
  164. .bdropinp:focus {
  165. outline:0;
  166. }
  167. .bdropinp:active {
  168. margin-left:9px;
  169. background: #aaaaaa;
  170. -webkit-transition: margin-left 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  171. -moz-transition: margin-left 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  172. transition: margin-left 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  173. -webkit-box-shadow: 0px 0px 0px #8e44ad;
  174. -moz-box-shadow: 0px 0px 0px #8e44ad;
  175. box-shadow: 0px 0px 0px #8e44ad;
  176. }
  177. /***********/
  178. .bkey {
  179. width: 75px;
  180. height:75px;
  181. }
  182. .bkey:focus {
  183. outline:0;
  184. }
  185. /*
  186. .bkey {
  187. width: 58px;
  188. height:58px;
  189. }
  190. */
  191. .bkeym {
  192. width: 100px;
  193. height:58px;
  194. }
  195. .bkeym:focus {
  196. outline:0;
  197. }
  198. /*****/
  199. .bkeyw {
  200. width: 150px;
  201. height:58px;
  202. }
  203. .bkeyw:focus {
  204. outline:0;
  205. }
  206. /*****/
  207. .bkeyHuge {
  208. width: 300px;
  209. height:300px;
  210. }
  211. .bkeyHuge:focus {
  212. outline:0;
  213. }
  214. /*****/
  215. .bfieldinp {
  216. width: 150px;
  217. height: 58px;
  218. }
  219. .bfieldinp:focus {
  220. outline:0;
  221. }
  222. /*****/
  223. .btnprv {
  224. position: absolute;
  225. left: 83%;
  226. top: 5%;
  227. }
  228. .btnnxt {
  229. position: absolute;
  230. left: 83%;
  231. top: 35%;
  232. }
  233. #mainstatus {
  234. font-family: "Courier New";
  235. font-weight:bold;
  236. color: #d7d644;
  237. font-size: 16px;
  238. position:absolute;
  239. bottom:0;
  240. width:110%;
  241. height:25px;
  242. background:#555555;
  243. /* margin:0; */
  244. margin-left:-35px;
  245. /* margin-top:5px; */
  246. /* padding:0; */
  247. }
  248. /*****/
  249. .rowmain0 {
  250. position: absolute;
  251. top: 50%;
  252. }
  253. .rowmain1 {
  254. position: absolute;
  255. top: 70%;
  256. }
  257. /** **/
  258. .invisiblock {
  259. /* background: rgba(255,0,0,0.5); */
  260. background-color: rgba(0,0,0,0);
  261. /* background-color: rgba(255,0,0,0.5); */
  262. width: 100px;
  263. height: 100px;
  264. border: none !important;
  265. font-size: 0;
  266. position: fixed;
  267. z-index: 2;
  268. outline:0;
  269. }