index.scss 1.92 KB
Newer Older
zhanghaozhe committed
1 2 3
#problems {
  height: 100%;
  padding: 58px 0 54px;
zhanghaozhe committed
4
  overflow-x: hidden;
zhanghaozhe committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

  .detail-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }

  .topic {
    padding: 0 13px;
    white-space: pre-wrap;
    font-size: 16px;
    color: #555;
  }

  .btn {
    position: relative;
    margin-top: 21px;

    button {
      position: absolute;
      right: 0;
      top: 0;
      font-size: 12px;
      color: #09f;
      -webkit-appearance: none;
      outline: 0;
      border: 0;
      background-color: transparent;
    }

    .iconfont {
      font-size: 14px;
    }
  }

  .content {
    margin-top: 16px;
    padding: 15px 13px;
zhanghaozhe committed
44
    background-color: #f5f5f5;
zhanghaozhe committed
45 46 47
    font-size: 16px;
    color: #333;
    white-space: pre-wrap;
zhanghaozhe committed
48
    word-break: break-all;
zhanghaozhe committed
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66

    .title {
      margin-bottom: 5px;
      color: #999;
      font-size: 14px;
    }
  }

  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 44px;
    padding: 0 12px 0 15px;
zhanghaozhe committed
67
    border-top: 1px solid #ddd;
zhanghaozhe committed
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
    background-color: #fff;
    font-size: 12px;
    color: #09f;

    .app {
      display: flex;
      color: #666;

      div {
        margin-left: 5px;
        color: #09f;
      }
    }

    .nav {
      display: inline-block;
      width: 60px;
      height: 22px;
      line-height: 22px;
      border: 1px solid rgba(0, 153, 255, 1);
      border-radius: 11px;
      text-align: center;

      &:nth-child(1) {
        margin-right: 20px;
      }
    }
  }
zhanghaozhe committed
96

zhanghaozhe committed
97
  .captcha-container {
zhanghaozhe committed
98
    width: 80%;
zhanghaozhe committed
99
    padding-top: 50%;
zhanghaozhe committed
100
    margin: 0 auto;
zhanghaozhe committed
101 102
    text-align: center;
    font-size: 20px;
zhanghaozhe committed
103
    div:nth-child(1) {
zhanghaozhe committed
104 105
      margin-bottom: 10px;
    }
zhanghaozhe committed
106
  }
zhanghaozhe committed
107 108 109 110 111 112 113 114 115 116 117 118 119 120
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -10%, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}

.slideInDown {
zhanghaozhe committed
121
  animation: slideInDown 0.3s both;
xuzhenghua committed
122
}