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 44 45 46 47

  .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;
    background-color: #F5F5F5;
    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 67 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

    .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;
    border-top: 1px solid #DDD;
    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 97 98

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

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

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

.slideInDown {
  animation: slideInDown .3s both;
xuzhenghua committed
122
}