_games_grid.css.scss 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. div.joyride-content-wrapper {
  2. ul {
  3. list-style-type: none;
  4. li {
  5. margin-bottom: 10px;
  6. span {
  7. display: block;
  8. }
  9. p.small { font-size: 0.8em; }
  10. span.icon {
  11. width: 108px !important;
  12. height: 108px !important;
  13. display: inline;
  14. }
  15. span.icon.memory {
  16. background: image-url("icons/spr-icons-categories-lg.png") 0 0;
  17. }
  18. }
  19. }
  20. }
  21. .games-grid {
  22. list-style: none;
  23. @extend .matrix;
  24. @extend .three-cols;
  25. padding: 0 10px;
  26. li {
  27. cursor: pointer;
  28. margin-bottom: 20px;
  29. .game-item-wrapper {
  30. border: 1px solid #efefef;
  31. border-radius: 3px;
  32. padding: 20px;
  33. margin: 0 auto;
  34. text-align: center;
  35. width: 95%;
  36. min-height: 475px;
  37. span {
  38. margin: 10px auto;
  39. width: 108px;
  40. height: 108px;
  41. display: inline-block;
  42. &.score-memory {
  43. background: image-url("icons/categories/icn-joyride-memory.png") center center no-repeat;
  44. }
  45. &.score-spatial_recognition {
  46. background: image-url("icons/categories/icn-joyride-spatial_recognition.png") center center no-repeat;
  47. }
  48. &.score-problem_solving {
  49. background: image-url("icons/categories/icn-joyride-problem_solving.png") center center no-repeat;
  50. }
  51. &.score-focus {
  52. background: image-url("icons/categories/icn-joyride-focus.png") center center no-repeat;
  53. }
  54. &.game-lock {
  55. background: image-url("icons/icn-lock.png") center center no-repeat;
  56. }
  57. }
  58. &:hover {
  59. border: 1px solid #CECECE;
  60. background: #efefef;
  61. }
  62. }
  63. .training-description {
  64. }
  65. }
  66. }