index.scss 1.75 KB
Newer Older
1 2 3 4
$primaryColor: rgba(0, 153, 255, .8);
.base-status-bar {
  display: flex;
  justify-content: space-between;
zhanghaozhe committed
5
  align-items: center;
6 7 8 9 10 11 12 13 14 15 16 17 18 19
  height: 44px;
  padding: 8px 10px;
  background: #2B2B33;
  color: #CFDBE5;
  font-size: 12px;

  button {
    font-size: 12px;
    color: #fff;
    background-color: $primaryColor;
    border: 0;
    border-radius: 4px;
    -webkit-appearance: none;
    outline: 0;
zhanghaozhe committed
20
    padding: 8px 12px;
21 22 23 24
  }
}

.first {
zhanghaozhe committed
25
  .tip {
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
    width: 169px;
  }

  .am-button {
    font-size: 12px;
  }
}

.normal {
  justify-content: flex-end;

  .check-answer {
    margin-right: 18px;
    border: 1px solid $primaryColor;
    border-radius: 4px;
    font-size: 12px;
    color: $primaryColor;
    background-color: transparent;
  }
}

zhanghaozhe committed
47
.pass {
48
  justify-content: flex-start;
zhanghaozhe committed
49
  align-items: center;
50
  color: #74c27c;
zhanghaozhe committed
51 52 53
  background: rgba(116, 193, 124, .3);

  .iconfont {
54
    font-size: 18px;
zhanghaozhe committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
    margin-right: 10px;
  }
}

.only-execute {
  justify-content: flex-end;
}

.error {
  align-items: center;

  .left {
    color: #C24E55;

    a {
      color: #fff;
      text-decoration: underline;
      margin-left: 15px;
    }
  }

  .iconfont {
    font-size: 18px;
    margin-right: 10px;
  }

  span {
    font-size: 15px;
  }
}

zhanghaozhe committed
86 87
.input-tip {
  .tip {
zhanghaozhe committed
88 89 90
    font-size: 12px;
    color: #CFDBE5;
  }
zhanghaozhe committed
91 92

  button {
zhanghaozhe committed
93 94 95
    border: 1px solid #09f;
    background: transparent;
    color: #09f;
96
  }
zhanghaozhe committed
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
}

.complete {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  .iconfont {
    font-size: 18px;

  }

  a {
    font-size: 12px;
    color: #CFDBE5;
    text-decoration: underline;
  }

  img {
    width: 18px;
    height: 18px;
  }

  .tip {
    margin-left: 11px;
    font-size: 15px;
  }

  &.finish {
    color: #74C17C;
  }

  &.skipped {
    color: #CFDBE6;
  }
132
}