index.scss 1.13 KB
Newer Older
zhanghaozhe committed
1 2
.question-container {
  padding-bottom: 20px;
zhanghaozhe committed
3

zhanghaozhe committed
4 5 6 7 8
  .question {
    font-size: 16px;
    color: #222;
    margin-bottom: 21px;
    padding: 0 17px;
zhanghaozhe committed
9 10 11 12 13 14 15 16 17
    white-space: pre-line;

    .category {
      padding: 2px 5px 3px;
      border: 1px solid #09f;
      border-radius: 3px;
      font-size: 12px;
      color: #09f;
    }
zhanghaozhe committed
18 19 20 21 22 23 24 25 26 27 28 29 30
  }

  .options {
    li {
      display: flex;
      min-height: 48px;
      padding: 0 17px;
      align-items: center;
      font-size: 16px;
      color: #333;
      margin-bottom: 12px;

      &.active {
zhanghaozhe committed
31
        background: #f8f8fb;
zhanghaozhe committed
32 33 34 35 36 37

        .letter {
          color: #09f;
          border-color: #09f;
        }
      }
zhanghaozhe committed
38 39 40

      &.correct {
        .letter {
zhanghaozhe committed
41
          background-color: #29c8a0;
zhanghaozhe committed
42
          color: #fff;
zhanghaozhe committed
43
          border: 1px solid #29c8a0;
zhanghaozhe committed
44 45 46 47 48
        }
      }

      &.error {
        .letter {
zhanghaozhe committed
49
          background-color: #ff5a5a;
zhanghaozhe committed
50
          color: #fff;
zhanghaozhe committed
51
          border: 1px solid #ff5a5a;
zhanghaozhe committed
52 53
        }
      }
zhanghaozhe committed
54 55 56 57 58 59 60 61 62 63 64 65 66
    }
  }

  .letter {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    margin-right: 13px;
    border: 1px solid #999;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
  }
zhanghaozhe committed
67
}