_assessment.css.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. .assessment {
  2. // margin-top: 40px;
  3. margin-bottom: 100px;
  4. h2 {
  5. font-size: 48px;
  6. text-align: center;
  7. }
  8. .questions {
  9. @extend .cf;
  10. background: #FFF;
  11. border: 1px solid #D3DADB;
  12. border-radius: 3px;
  13. .assessment-steps {
  14. margin: 10px;
  15. margin-bottom: 40px;
  16. li {
  17. background: image-url("assessment/steps_bg.png") repeat-x;
  18. position: relative;
  19. height: 32px;
  20. &.active span {
  21. background: image-url("assessment/steps_active.png") center center no-repeat;
  22. }
  23. span {
  24. background: image-url("assessment/steps_inactive.png") center center no-repeat;
  25. width: 32px;
  26. height: 32px;
  27. display: block;
  28. position: absolute;
  29. left: -16px;
  30. &.last {
  31. background: image-url("assessment/steps_inactive.png") center center no-repeat;
  32. left: auto;
  33. right: -16px;
  34. }
  35. &.last.active {
  36. background: image-url("assessment/steps_active.png") center center no-repeat !important;
  37. }
  38. }
  39. }
  40. }
  41. .question-and-answers {
  42. @extend .cf;
  43. padding: 40px 60px;
  44. .question {
  45. @extend .cf;
  46. margin-bottom: 30px;
  47. h3 {
  48. font-family: "Open Sans", sans-serif;
  49. font-size: 28px;
  50. font-weight: 700;
  51. margin-bottom: 0;
  52. margin-top: 12px;
  53. }
  54. span {
  55. color: #B6B6B6;
  56. font-size: .9em;
  57. font-style: italic;
  58. font-weight: 100;
  59. }
  60. }
  61. ul.answers {
  62. li {
  63. background: #F8F8F8;
  64. font-size: 18px;
  65. list-style-type: none;
  66. margin-bottom: 22px;
  67. &.selected {
  68. background: #ECFCF2 image-url("assessment/icn_checked.png") 97% 50% no-repeat;
  69. border: 2px solid #86C79E;
  70. }
  71. &:last-child {
  72. margin-bottom: 0;
  73. }
  74. label {
  75. padding: 20px;
  76. }
  77. }
  78. div {
  79. float: right;
  80. }
  81. }
  82. input[type=submit] {
  83. float: right;
  84. }
  85. }
  86. }a.next-button {
  87. float: right;
  88. margin-top: 20px;
  89. }
  90. }
  91. .blur {
  92. filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='blurfilter' x='0' y='0'><feGaussianBlur in='SourceGraphic' stdDeviation='3'></feGaussianBlur></filter></svg>#blurfilter");
  93. -webkit-filter: blur(4px);
  94. filter: blur(4px);
  95. }
  96. .overlay {
  97. position: absolute;
  98. padding-top: 200px;
  99. top: 0px;
  100. right: 0px;
  101. height: 100%;
  102. overflow: hidden;
  103. text-align: center;
  104. }