not really known
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.

139 lines
2.5 KiB

  1. #body {
  2. overflow-x: hidden;
  3. overflow-y: hidden;
  4. }
  5. .toolbar {
  6. height: auto !important;
  7. min-height: 55px !important;
  8. }
  9. #main-toolbar #activity-button {
  10. background-image: url(../activity/activity-icon.svg);
  11. }
  12. #main-toolbar #activity-button {
  13. background-image: url(../activity/activity-icon.svg);
  14. }
  15. #main-toolbar #clear-button {
  16. background-image: url(../icons/edit-clear.svg);
  17. }
  18. #trigo-palette {
  19. background-image: url(../icons/toolbar-trigonometry.svg);
  20. }
  21. #algebra-palette {
  22. background-image: url(../icons/toolbar-algebra.svg);
  23. }
  24. #base-palette {
  25. background-image: url(../icons/base-10.svg);
  26. }
  27. #radian-degree-palette {
  28. background-image: url(../icons/format-deg.svg);
  29. }
  30. #output-digits-palette {
  31. background-image: url(../icons/digits-6.svg);
  32. display: none;
  33. }
  34. .palette .wrapper {
  35. min-width: 10px;
  36. padding: 5px;
  37. }
  38. .visible {
  39. display: block !important;
  40. }
  41. .backgroundgray {
  42. background-color: #B5B6BD;
  43. }
  44. .backgrounddark {
  45. background-color: #4A4D4A;
  46. }
  47. .aligncenter {
  48. text-align: center;
  49. }
  50. input[type='text'] {
  51. color: #000 !important;
  52. }
  53. textarea {
  54. color: #000 !important;
  55. }
  56. #results-zone {
  57. display: none;
  58. overflow-y: scroll;
  59. }
  60. .result {
  61. font-size: 300% !important;
  62. }
  63. #label-input {
  64. padding-top:3px !important;
  65. padding-left:7px !important;
  66. height: 50px !important;
  67. font-size: 200% !important;
  68. }
  69. #calc-input {
  70. padding-top:3px !important;
  71. padding-left:7px !important;
  72. height: 50px !important;
  73. font-size: 200% !important;
  74. }
  75. .calcbutton {
  76. height: 50px;
  77. padding: 8%;
  78. width: 92%;
  79. font-weight: bold !important;
  80. font-size: 200% !important;
  81. }
  82. .calcbutton-large {
  83. height: 50px;
  84. padding: 2%;
  85. width: 98%;
  86. font-weight: bold !important;
  87. font-size: 200% !important;
  88. }
  89. @media only screen and (min-width:515px) {
  90. #output-digits-palette {
  91. display: inline-block !important;
  92. }
  93. }
  94. @media only screen and (min-width:560px) {
  95. .calcbutton {
  96. height: 50px;
  97. }
  98. .calcbutton-large {
  99. height: 50px;
  100. }
  101. }
  102. @media only screen and (min-width:760px) {
  103. .calcbutton {
  104. height: 100px;
  105. }
  106. .calcbutton-large {
  107. height: 100px;
  108. }
  109. }
  110. @media only screen and (min-width:1000px) {
  111. .calcbutton {
  112. height: 120px;
  113. }
  114. .calcbutton-large {
  115. height: 120px;
  116. }
  117. }
  118. @media only screen and (min-width:1200px) {
  119. .calcbutton {
  120. height: 120px;
  121. }
  122. .calcbutton-large {
  123. height: 120px;
  124. }
  125. }
  126. .nanoModal {
  127. top: 3% !important;
  128. min-width: 10px !important;
  129. }
  130. #result {
  131. -webkit-touch-callout: none;
  132. -webkit-user-select: none;
  133. -khtml-user-select: none;
  134. -moz-user-select: none;
  135. -ms-user-select: none;
  136. user-select: none;
  137. }