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
6.1 KiB

  1. body {
  2. -moz-osx-font-smoothing: grayscale;
  3. background: #B9B9B9;
  4. background: #FFF;
  5. color: #0459ed; }
  6. .logo {
  7. width: auto;
  8. flex: 0;
  9. padding: 20px;
  10. color: #0459ed;
  11. font-size: 50px;
  12. text-transform: uppercase;
  13. font-family: 'Poppins', sans-serif;
  14. font-weight: 900;
  15. background: #0459ed;
  16. color: #FFF; }
  17. .logo {
  18. float: left;
  19. margin: 0 0 60px 40px;
  20. font-size: 30px;
  21. border-bottom-left-radius: 8px;
  22. border-bottom-right-radius: 8px; }
  23. .logo:hover {
  24. color: #FFF;
  25. text-decoration: none; }
  26. .logo div {
  27. line-height: 30px; }
  28. a {
  29. color: #b3b3b3; }
  30. a:hover {
  31. color: #999999; }
  32. .button--enter, .game__submit {
  33. height: 70px;
  34. width: 100%;
  35. margin-top: 0em;
  36. border: 0;
  37. outline: 0;
  38. font-size: 20px;
  39. font-family: 'Poppins', sans-serif;
  40. font-weight: 500; }
  41. .button--enter, .game__submit {
  42. color: #FFF;
  43. overflow: hidden;
  44. border-radius: 8px;
  45. background: #0459ed;
  46. transition: all 0.5s; }
  47. .button--enter:hover, .game__submit:hover {
  48. background: #0346bb;
  49. transform: scale(1.05); }
  50. .button--enter,
  51. .button__top,
  52. .button__bottom {
  53. transition: all 0.7s; }
  54. .button--enter .button__top,
  55. .button--enter .button__bottom {
  56. height: 100%;
  57. width: 100%;
  58. padding: 20px;
  59. text-align: center;
  60. font-size: 20px;
  61. display: block; }
  62. .button--enter.is--active .button__top {
  63. margin-top: -140px; }
  64. .button__top {
  65. background-color: #0459ed;
  66. color: #FFF;
  67. border: none;
  68. border-radius: 5px;
  69. font-family: 'Poppins', sans-serif;
  70. font-weight: 500;
  71. height: 100%;
  72. width: 100%;
  73. padding: 20px;
  74. text-align: center;
  75. font-size: 20px;
  76. display: block;
  77. }
  78. .login__input:focus{
  79. outline: none;
  80. }
  81. .button__bottom {
  82. color: #FFF;
  83. background: #30ce4b; }
  84. .button__bottom:hover {
  85. text-decoration: none;
  86. color: #FFF; }
  87. .button__spacer {
  88. background: linear-gradient(#0459ed, #30ce4b);
  89. height: 70px;
  90. width: 100%; }
  91. .btn-5 {
  92. border: 0 solid;
  93. outline: 1px solid;
  94. outline-color: rgba(255, 255, 255, 0.5);
  95. outline-offset: 0px;
  96. text-shadow: none;
  97. transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1); }
  98. .game__sidebar:hover .btn-5 {
  99. outline-color: rgba(255, 255, 255, 0);
  100. outline-offset: 15px;
  101. text-shadow: 1px 1px 2px #427388; }
  102. .field--nickname input {
  103. font-size: 20px;
  104. padding: 20px;
  105. border: none;
  106. border: 1px solid #ddd;
  107. border-radius: 8px; }
  108. .field--nickname label {
  109. font-size: 20px; }
  110. .login__input {
  111. float: left;
  112. padding: 0 0 15px 0;
  113. padding-left: 0;
  114. font-size: 100px;
  115. font-family: 'Josefin Sans', sans-serif;
  116. vertical-align: baseline;
  117. min-width: 100px;
  118. margin: 0 15px 10px 0;
  119. background: transparent;
  120. box-shadow: 0;
  121. font-weight: 300;
  122. border: none;
  123. color: #4286fc; }
  124. .lobby__rooms {
  125. padding: 0;
  126. margin: 0; }
  127. .lobby__room {
  128. z-index: 2;
  129. height: auto;
  130. overflow: auto;
  131. padding: 15px;
  132. margin: -2px 0 0 0;
  133. list-style: none;
  134. font-size: 24px;
  135. background: #FFF;
  136. color: #0459ed;
  137. border: 2px solid #0459ed;
  138. transition: all 0.5s; }
  139. .lobby__room:hover {
  140. transform: scale(1.05); }
  141. .lobby__room:first-child {
  142. z-index: 1;
  143. padding: 15px 0;
  144. border: none;
  145. font-weight: 600;
  146. background: transparent; }
  147. .lobby__room:first-child:hover {
  148. transform: scale(1); }
  149. .lobby__room:first-child .lobby__room-status {
  150. background: transparent;
  151. color: #0459ed; }
  152. .lobby__room-name {
  153. width: 50%;
  154. float: left;
  155. display: block;}
  156. .lobby__room-occupancy {
  157. width: 40%;
  158. text-align: center;
  159. float: left;
  160. display: block; }
  161. .lobby__room-status {
  162. padding: 3px 10px 2px;
  163. float: right;
  164. text-align: right;
  165. width: 10%;
  166. text-align: center;
  167. background: #0459ed;
  168. color: #FFF;
  169. border-radius: 8px;
  170. border: none;
  171. font-size: 20px;
  172. font-family: 'Poppins', sans-serif;
  173. font-weight: 500;
  174. float: left;
  175. display: block; }
  176. .game [class^="col"] {
  177. height: 100vh; }
  178. .game__main {
  179. display: flex;
  180. flex-direction: column;
  181. padding: 0 40px 40px;
  182. clear: both; }
  183. .game__sidebar {
  184. position: relative;
  185. display: flex;
  186. flex-direction: column;
  187. padding: 40px;
  188. color: #FFF;
  189. background: #0459ed;
  190. border: 40px solid #fff;
  191. border-right-width: 80px;
  192. overflow: hidden;
  193. border-radius: 8px; }
  194. .game__room {
  195. z-index: 2;
  196. margin: 0 0 5px 0;
  197. font-size: 24px;
  198. font-weight: 400;
  199. font-family: 'Poppins', sans-serif; }
  200. .game__capacity {
  201. z-index: 2;
  202. margin: 0 0 20px; }
  203. .game__players {
  204. z-index: 2;
  205. padding: 0;
  206. margin: 0; }
  207. .game__player {
  208. margin: 0 0 5px 0;
  209. list-style-position: inside; }
  210. .game__player-name {
  211. margin: 0 10px 0 0;
  212. font-weight: 700; }
  213. .game__player-ready {
  214. float: right; }
  215. .scene {
  216. z-index: 1;
  217. top: 0;
  218. left: 0; }
  219. .game__user-name,
  220. .game__user-score {
  221. text-align: center; }
  222. .game__user-name {
  223. margin: 0 0 20px 0;
  224. font-size: 32px;
  225. font-weight: 400; }
  226. .game__user-score {
  227. z-index: 2;
  228. width: auto;
  229. padding: 20px;
  230. margin: 20px 0 25px;
  231. font-size: 20px;
  232. font-weight: 700;
  233. font-family: 'Poppins', sans-serif;
  234. color: #FFF;
  235. border: 2px solid #FFF; }
  236. .game__user-score div + div {
  237. font-size: 24px; }
  238. .game__round {
  239. z-index: 2;
  240. margin: 0 0 20px 0;
  241. font-size: 24px;
  242. font-weight: 700;
  243. font-family: 'Poppins', sans-serif; }
  244. .game__phrase {
  245. flex-direction: column;
  246. align-items: center;
  247. justify-content: center;
  248. margin: 0 0 30px 0; }
  249. .game__phrase--entry,
  250. .game__phrase--clue {
  251. float: left;
  252. padding: 0 0 15px 0;
  253. padding-left: 0;
  254. font-size: 100px;
  255. font-family: 'Josefin Sans', sans-serif;
  256. vertical-align: baseline; }
  257. .game__phrase--entry {
  258. min-width: 100px;
  259. margin: 0 15px 10px 0;
  260. border-right: none;
  261. background: transparent;
  262. box-shadow: 0;
  263. text-align: right;
  264. font-weight: 300;
  265. border-bottom: 2px dashed #4286fc;
  266. color: #4286fc; }
  267. .game__phrase--entry:focus {
  268. outline: 0; }
  269. .game__phrase--entry[contenteditable="true"]:focus, .game__phrase--entry[contenteditable="true"]:active {
  270. color: #0459ed;
  271. border-bottom: 2px dashed #0459ed; }
  272. .game__phrase--clue {
  273. font-weight: 900; }
  274. .game__submit {
  275. margin: 0 0 30px;
  276. max-width: 540px; }
  277. .game__exit {
  278. text-decoration: underline; }
  279. .game__timer {
  280. z-index: 2;
  281. float: right;
  282. margin: 0 0 20px 0; }
  283. /*# sourceMappingURL=app.css.map */