index.scss 1.87 KB
Newer Older
zhanghaozhe committed
1 2
html,
body {
zhanghaozhe committed
3 4 5 6 7 8 9
  height: 100%;
  background-color: #fff;
}

.submit-answer {
  .detail-header {
    background-color: #fff;
zhanghaozhe committed
10
    border-bottom: 1px solid #ddd;
zhanghaozhe committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24
  }

  .content {
    padding: 32px 16px;
  }

  .cost {
    position: relative;
    font-size: 18px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;

    @mixin pseudo {
zhanghaozhe committed
25
      content: "";
zhanghaozhe committed
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      display: block;
      width: 16px;
      height: 11px;
      background: url("./line.png") no-repeat;
      background-size: contain;
    }

    $dis: 25%;

    &::before {
      @include pseudo;
      left: $dis;
    }

    &::after {
      @include pseudo;
      transform: scale(-1, 1) translateY(-50%);
      right: $dis;
    }
  }

  .answers {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto 60px;

    li {
      $size: 34px;
      width: $size;
      height: $size;
      margin-right: 25px;
      margin-bottom: 16px;
      line-height: $size;
      border-radius: 50%;
      border: 1px solid #09f;
      color: #09f;
      text-align: center;
      font-size: 18px;

      &:nth-of-type(5n) {
        margin-right: 0;
      }

      &.selected {
        background-color: #09f;
        color: #fff;
      }
zhanghaozhe committed
77 78

      &.wrong {
zhanghaozhe committed
79 80
        background-color: #e64949;
        border-color: #e64949;
zhanghaozhe committed
81 82 83 84
        color: #fff;
      }

      &.unselect {
zhanghaozhe committed
85 86
        border: 1px solid #e64949;
        color: #e64949;
zhanghaozhe committed
87 88 89
      }

      &.correct {
zhanghaozhe committed
90 91
        background-color: #2cdbaf;
        border-color: #2cdbaf;
zhanghaozhe committed
92 93
        color: #fff;
      }
zhanghaozhe committed
94 95 96
    }
  }

zhanghaozhe committed
97 98 99 100 101 102 103
  .score {
    margin-bottom: 30px;
    font-size: 21px;
    color: #09f;
    text-align: center;
  }

zhanghaozhe committed
104 105 106 107 108 109 110 111 112 113 114
  button {
    width: 343px;
    height: 44px;
    background: #09f;
    border-radius: 22px;
    -webkit-appearance: none;
    outline: 0;
    border: 0;
    color: #fff;
    font-size: 18px;
  }
zhanghaozhe committed
115
}