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.

326 lines
5.6 KiB

  1. #main-toolbar #activity-button {
  2. background-image: url(../activity/activity-icon.svg);
  3. outline: none;
  4. }
  5. #main-toolbar #level-button {
  6. background-image: url(../icons/level.svg);
  7. outline: none;
  8. }
  9. #main-toolbar #filter-button {
  10. background-image: url(../icons/filter.svg);
  11. outline: none;
  12. }
  13. #main-toolbar #restart-button {
  14. background-image: url(../icons/restart.svg);
  15. outline: none;
  16. }
  17. #main-toolbar #network-button {
  18. background-image: url(../lib/sugar-web/graphics/icons/actions/zoom-home.svg);
  19. outline: none;
  20. }
  21. #private-button {
  22. background-image: url(../lib/sugar-web/graphics/icons/actions/zoom-home.svg);
  23. width: 47px;
  24. height: 47px;
  25. margin: 4px 2px;
  26. color: white;
  27. color: transparent;
  28. background-color: transparent;
  29. background-position: center;
  30. background-repeat: no-repeat;
  31. background-size: contain;
  32. outline: none;
  33. border: 0;
  34. border-radius: 5.5px;
  35. }
  36. #shared-button {
  37. background-image: url(../lib/sugar-web/graphics/icons/actions/zoom-neighborhood.svg);
  38. width: 47px;
  39. height: 47px;
  40. margin: 4px 2px;
  41. color: white;
  42. color: transparent;
  43. background-color: transparent;
  44. background-position: center;
  45. background-repeat: no-repeat;
  46. background-size: contain;
  47. border: 0;
  48. outline: none;
  49. border-radius: 5.5px;
  50. }
  51. .disabled{
  52. opacity: .65;
  53. }
  54. #main-toolbar #stop-button {
  55. outline: none;
  56. }
  57. #canvas{
  58. background-color: white;
  59. }
  60. .palette-button {
  61. width: 80px;
  62. height: 40px;
  63. margin: 4px 22px;
  64. color: transparent;
  65. background-size: 59px;
  66. border: 0;
  67. border-radius: 5.5px;
  68. display: block;
  69. }
  70. .filter-item {
  71. color: white;
  72. font-size: 12pt;
  73. }
  74. .palette-button-notselected {
  75. background-color: transparent;
  76. }
  77. .palette-button-selected {
  78. background-color: #9c9a9c;
  79. }
  80. html {
  81. height: 100%;
  82. width: 100%;
  83. background-color: white;
  84. }
  85. #container {
  86. height: 80vh;
  87. margin: 5vh auto;
  88. padding: 20px;
  89. border-radius: 10px;
  90. background-color: #ffffff;
  91. position: relative;
  92. }
  93. #time {
  94. float: left;
  95. padding: 10px;
  96. text-align: center;
  97. font-size: 30px;
  98. font-family: sans-serif;
  99. font-weight: 300;
  100. position: relative;
  101. border-radius: 5px;
  102. color: black;
  103. }
  104. #score {
  105. float: right;
  106. padding: 10px;
  107. text-align: center;
  108. font-size: 30px;
  109. font-family: sans-serif;
  110. font-weight: 300;
  111. position: relative;
  112. border-radius: 5px;
  113. color: black;
  114. }
  115. #answer {
  116. min-height: 6vh;
  117. }
  118. #correct {
  119. text-align: center;
  120. padding: 10px;
  121. font-size: 15px;
  122. background-color: #01848F;
  123. color: #fff;
  124. border-radius: 5px;
  125. display: none;
  126. }
  127. #wrong {
  128. text-align: center;
  129. padding: 10px;
  130. font-size: 15px;
  131. background-color: #C62828;
  132. color: #fff;
  133. border-radius: 5px;
  134. display: none;
  135. }
  136. #question {
  137. height: 150px;
  138. margin: 1vw auto 6vh auto;
  139. font-size: 130px;
  140. font-weight: 200;
  141. font-family: Roboto, sans-serif;
  142. text-align: center;
  143. }
  144. #instruction {
  145. height: 60px;
  146. margin: 0 auto 2vh auto;
  147. border-radius: 5px;
  148. font-size: 15px;
  149. font-family: Roboto, sans-serif;
  150. font-weight: 300;
  151. text-align: center;
  152. line-height: 60px;
  153. }
  154. #choices {
  155. display: flex;
  156. justify-content: space-between;
  157. margin: 0 auto 6vh auto;
  158. }
  159. .box {
  160. background-color: #CDDC39;
  161. height: 80px;
  162. font-size: 20px;
  163. font-family: Roboto, sans-serif;
  164. font-weight: 300;
  165. text-align: center;
  166. line-height: 80px;
  167. border-radius: 5px;
  168. cursor: pointer;
  169. }
  170. .box:hover {
  171. background-color: #C0CA33;
  172. font-size: 25px;
  173. font-weight: 400;
  174. }
  175. .box:active {
  176. background-color: #AFB42B;
  177. }
  178. #box4 {
  179. margin-right: 0px;
  180. }
  181. #start {
  182. background-color: #4CAF50;
  183. height: 40px;
  184. color: white;
  185. font-size: 15px;
  186. font-family: Roboto, sans-serif;
  187. font-weight: 300;
  188. text-align: center;
  189. line-height: 45px;
  190. border-radius: 5px;
  191. cursor: pointer;
  192. }
  193. #start:hover {
  194. background-color: #66BB6A;
  195. color: white;
  196. }
  197. #gameOver {
  198. text-align: center;
  199. padding: 10px;
  200. font-size: 30px;
  201. border-radius: 5px;
  202. display: none;
  203. }
  204. /*Phone Landscape*/
  205. @media only screen
  206. and (min-width: 414px)
  207. and (max-width: 956px)
  208. and (orientation: landscape) {
  209. #container {
  210. width: 100vw;
  211. height: 100vh;
  212. margin: 0;
  213. padding: 10px;
  214. border-radius: 0;
  215. }
  216. #time {
  217. padding: 5px;
  218. font-size: 15px;
  219. border-radius: 2px;
  220. }
  221. #score {
  222. padding: 5px;
  223. font-size: 15px;
  224. border-radius: 2px;
  225. }
  226. #answer {
  227. min-height: 10vh;
  228. }
  229. #correct {
  230. text-align: center;
  231. padding: 5px;
  232. border-radius: 2px;
  233. display: none;
  234. margin: 1vh auto;
  235. }
  236. #wrong {
  237. text-align: center;
  238. padding: 5px;
  239. border-radius: 2px;
  240. display: none;
  241. margin: 1vh auto;
  242. }
  243. #question {
  244. height: 80px;
  245. margin: 1vw auto 2vh auto;
  246. font-size: 60px;
  247. vertical-align: 40%;
  248. }
  249. #instruction {
  250. height: 50px;
  251. margin: 0 auto 2vh auto;
  252. border-radius: 2px;
  253. line-height: 60px;
  254. }
  255. #gameOver {
  256. padding: 5px;
  257. font-size: 15px;
  258. border-radius: 2px;
  259. }
  260. #start {
  261. font-size: 15px;
  262. border-radius: 2px;
  263. cursor: pointer;
  264. }
  265. .box {
  266. height: 60px;
  267. font-size: 15px;
  268. line-height: 40px;
  269. border-radius: 2px;
  270. cursor: pointer;
  271. }
  272. #choices {
  273. display: flex;
  274. justify-content: space-between;
  275. margin: 0 auto 6vh auto;
  276. }
  277. .row{
  278. margin: 0px;
  279. }
  280. }