_assessment-results.css.scss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. .assessment_results {
  2. .clearFloats {
  3. clear: both;
  4. }
  5. .spacer {
  6. background: transparent image-url("assessment/ellipse.png") top left no-repeat;
  7. width: 36px;
  8. height: 10px;
  9. margin-left: auto;
  10. margin-right: auto;
  11. }
  12. #result-top {
  13. font-family: "Dosis", "Open Sans";
  14. font-size: 18px;
  15. @media screen and (min-width: 768px) {
  16. padding: 20px;
  17. }
  18. #animal {
  19. width: 137px;
  20. height: 107px;
  21. margin-left: auto;
  22. margin-right: auto;
  23. }
  24. #description {
  25. padding: 10px;
  26. text-align: center;
  27. margin-left: auto;
  28. margin-right: auto;
  29. max-width: 768px;
  30. }
  31. }
  32. .result-section {
  33. margin-top: 10px;
  34. margin-bottom: 10px;
  35. padding: 20px;
  36. overflow: hidden;
  37. margin-left: auto;
  38. margin-right: auto;
  39. max-width: 768px;
  40. font-family: "Dosis", "Open Sans";
  41. font-size: 14px;
  42. #memory-image {
  43. background: transparent image-url("assessment/memory_76.png") top left no-repeat;
  44. }
  45. #focus-image {
  46. background: transparent image-url("assessment/focus_76.png") top left no-repeat;
  47. }
  48. #problem_solving-image {
  49. background: transparent image-url("assessment/logic_76.png") top left no-repeat;
  50. }
  51. #spatial_recognition-image {
  52. background: transparent image-url("assessment/spatial_76.png") top left no-repeat;
  53. }
  54. .result-image {
  55. width: 76px;
  56. height: 76px;
  57. margin-left: auto;
  58. margin-right: auto;
  59. @media screen and (min-width: 768px) {
  60. float: left;
  61. margin-right: 10px;
  62. }
  63. }
  64. .result-details {
  65. float: left;
  66. max-width: 600px;
  67. .result-bar {
  68. height: 40px;
  69. position: relative;
  70. padding-bottom: 10px;
  71. #memory-floater {
  72. color: #D55F60;
  73. }
  74. #focus-floater {
  75. color: #F6D474;
  76. }
  77. #problem_solving-floater {
  78. color: #67ABDE;
  79. }
  80. #spatial_recognition-floater {
  81. color: #84C99D;
  82. }
  83. .bar-floater {
  84. width: 45px;
  85. height: 26px;
  86. padding-top: 3px;
  87. padding-left: 13px;
  88. background: transparent image-url('assessment/result-indicator.png') top left no-repeat;
  89. font-family: "Open Sans";
  90. font-size: 10px;
  91. font-weight: bold;
  92. }
  93. .meter {
  94. width: 100%;
  95. height: 20px;
  96. background: lightgray;
  97. border-radius: 10px;
  98. #memory-bar {
  99. background: #D55F60 image-url("assessment/red_texture.png");
  100. }
  101. #focus-bar {
  102. background: #F6D474 image-url("assessment/yellow_texture.png");
  103. }
  104. #problem_solving-bar {
  105. background: #67ABDE image-url("assessment/blue_texture.png");
  106. }
  107. #spatial_recognition-bar {
  108. background: #84C99D image-url("assessment/green_texture.png");
  109. }
  110. span {
  111. height: 100%;
  112. display: block;
  113. background-color: limegreen;
  114. border-top-left-radius: 10px;
  115. border-bottom-left-radius: 10px;
  116. }
  117. }
  118. .full_memory { background: #D55F60 !important; }
  119. .full_focus { background: #F6D474 !important; }
  120. .full_problem_solving { background: #67ABDE !important; }
  121. .full_spatial_recognition { background: #84C99D !important; }
  122. }
  123. .result-description {
  124. padding: 5px;
  125. h1 {
  126. font-size: 20px;
  127. font-weight: bold;
  128. padding-bottom: 15px;
  129. }
  130. }
  131. }
  132. }
  133. #conclusion {
  134. font-family: "Dosis", "Open Sans";
  135. font-size: 14px;
  136. max-width: 768px;
  137. padding: 10px;
  138. margin-left: auto;
  139. margin-right: auto;
  140. margin-top: 20px;
  141. }
  142. }