DrawDocument.scss 889 Bytes
Newer Older
1
.drawDocument {
zhanghaozhe committed
2
  background-color: #f7f9fc;
3

zhanghaozhe committed
4 5 6 7 8
  .navbar {
    font-size: 16px;
    color: #333333;
    height: 44px;
    position: relative;
9

zhanghaozhe committed
10 11 12 13 14
    i {
      font-size: 22px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
15
    }
zhanghaozhe committed
16 17 18 19 20
    div {
      margin: 0 auto;
      height: 44px;
      line-height: 44px;
      text-align: center;
21
    }
zhanghaozhe committed
22 23 24 25 26 27
  }

  .content {
    background-color: #fff;
    padding-top: 20px;
  }
28

zhanghaozhe committed
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
  .bottom {
    height: 44px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #dddddd;
    .tip {
      color: #555555;
      font-size: 12px;
      padding-left: 5px;
    }
    .app {
      width: 88px;
      height: 22px;
      line-height: 22px;
      text-align: center;
      border: 1px solid #0099ff;
      border-radius: 11px;
      font-size: 12px;
      color: #0099ff;
51
    }
zhanghaozhe committed
52 53
  }
}