_game_container.css.scss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .game-container {
  2. header {
  3. position: relative;
  4. .game-nav {
  5. display: inline-block;
  6. line-height: 100px;
  7. padding: 0 10px;
  8. position: absolute;
  9. top: 0;
  10. }
  11. .game-info {
  12. display: inline-block;
  13. padding: 2px 40px;
  14. width: auto;
  15. h2 {
  16. font-size: 28px;
  17. margin-bottom: 0;
  18. }
  19. p {
  20. font-size: 12px;
  21. }
  22. }
  23. }
  24. .assesment-game {
  25. text-align: center;
  26. padding-bottom: 20px;
  27. .locked-canvas {
  28. width: 800px;
  29. height: 600px;
  30. margin: auto;
  31. .locked-nav {
  32. height: 50px;
  33. color: #ffffff;
  34. font-family: "Open Sans", "Helvetica", Helvetica, Arial, sans-serif;
  35. font-weight: normal;
  36. font-style: normal;
  37. line-height: 50px;
  38. }
  39. .locked-body {
  40. height: 550px;
  41. .content {
  42. padding-top: 50px;
  43. margin: auto;
  44. float: none;
  45. .button {
  46. margin-top: 40px;
  47. }
  48. }
  49. }
  50. }
  51. }
  52. }