UserLayout.less 991 Bytes
Newer Older
jim's avatar
jim committed
1
@import '~antd/lib/style/themes/default.less';
2 3

.container {
4 5
  display: flex;
  flex-direction: column;
6
  min-height: 100%;
ddcat1115's avatar
ddcat1115 committed
7
  background: #f0f2f5;
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
}

.content {
  padding: 32px 0;
  flex: 1;
}

@media (min-width: @screen-md-min) {
  .container {
    background-image: url('https://gw.alipayobjects.com/zos/rmsportal/TVYTbAXWheQpRcWDaDMu.svg');
    background-repeat: no-repeat;
    background-position: center 110px;
    background-size: 100%;
  }

  .content {
    padding: 112px 0 24px 0;
  }
26 27 28 29 30 31 32 33 34
}

.top {
  text-align: center;
}

.header {
  height: 44px;
  line-height: 44px;
afc163's avatar
afc163 committed
35 36 37
  a {
    text-decoration: none;
  }
38 39 40 41 42
}

.logo {
  height: 44px;
  vertical-align: top;
ddcat1115's avatar
ddcat1115 committed
43
  margin-right: 16px;
44 45 46 47 48
}

.title {
  font-size: 33px;
  color: @heading-color;
afc163's avatar
afc163 committed
49 50
  font-family: 'Myriad Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  font-weight: 600;
afc163's avatar
afc163 committed
51
  position: relative;
afc163's avatar
afc163 committed
52
  top: 2px;
53 54 55
}

.desc {
ddcat1115's avatar
ddcat1115 committed
56
  font-size: @font-size-base;
57 58 59 60
  color: @text-color-secondary;
  margin-top: 12px;
  margin-bottom: 40px;
}