index.less 1.0 KB
Newer Older
R
Rongfeng Fu 已提交
1 2
@backgroundColor: #f5f8ff;

R
Rongfeng Fu 已提交
3 4 5 6 7 8 9 10
.container {
  height: 100%;
}

.englishContainer {
  font-family: SourceSansPro-Semibold, SourceSansPro-Regular;
}

R
Rongfeng Fu 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
.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;
R
Rongfeng Fu 已提交
26
    width: 125px;
R
Rongfeng Fu 已提交
27 28 29 30
    vertical-align: middle;
  }
  .logoText {
    margin-left: 8px;
R
Rongfeng Fu 已提交
31
    font-size: 14px;
R
Rongfeng Fu 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44
  }
  .actionContent {
    float: right;
  }
  .action {
    color: #5c6b8a;
  }
  .actionIcon {
    margin-right: 10px;
  }
}

.pageContainer {
R
Rongfeng Fu 已提交
45
  min-height: calc(100% - 240px);
R
Rongfeng Fu 已提交
46
  padding-top: 170px;
R
Rongfeng Fu 已提交
47
  padding-bottom: 70px;
R
Rongfeng Fu 已提交
48 49 50 51 52 53 54 55 56
  background-color: @backgroundColor;
  .pageMain {
    .pageContent {
      width: 1040px;
      margin: 0 auto;
      overflow: auto;
    }
  }
}
R
Rongfeng Fu 已提交
57 58 59 60 61 62 63 64 65 66

.mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.45);
}