index.less 788 字节
Newer Older
R
Rongfeng Fu 已提交
1 2 3 4 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 48
@backgroundColor: #f5f8ff;

.pageHeader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  height: 48px;
  padding: 0 20px;
  overflow: hidden;
  line-height: 48px;
  background-color: @backgroundColor;
  border-bottom: 1px solid #dde4ed;
  .logo {
    position: relative;
    top: -2px;
    width: 140px;
    vertical-align: middle;
  }
  .logoText {
    margin-left: 8px;
    font-size: 16px;
  }
  .actionContent {
    float: right;
  }
  .action {
    color: #5c6b8a;
  }
  .actionIcon {
    margin-right: 10px;
  }
}

.pageContainer {
  min-height: calc(100% - 220px);
  padding-top: 170px;
  padding-bottom: 50px;
  background-color: @backgroundColor;
  .pageMain {
    .pageContent {
      width: 1040px;
      margin: 0 auto;
      overflow: auto;
    }
  }
}