UserLayout.less 1.47 KB
Newer Older
陈帅's avatar
陈帅 committed
1
@import '~antd/es/style/themes/default.less';
2 3

.container {
4 5
  display: flex;
  flex-direction: column;
jim's avatar
jim committed
6 7
  height: 100vh;
  overflow: auto;
bzone's avatar
bzone committed
8
  background: @layout-body-background;
duanledexianxianxian's avatar
duanledexianxianxian committed
9 10 11
  .lang {
    background: @primary-color;
  }
duanledexianxianxian's avatar
duanledexianxianxian committed
12 13 14 15 16 17 18 19 20 21
  .content {
    padding: 0;
  }
  :global {
    .anticon-copyright {
      margin-right: 16px;
    }
    .ant-layout-footer {
      background: linear-gradient(#43cec4, #43cec4);
      .ant-pro-global-footer-copyright {
duanledexianxianxian's avatar
duanledexianxianxian committed
22
        font-size: 10px;
duanledexianxianxian's avatar
duanledexianxianxian committed
23 24 25 26
        color: rgba(255, 255, 255, 0.6);
      }
    }
  }
27 28
}

29 30 31 32
.lang {
  width: 100%;
  height: 40px;
  line-height: 44px;
33
  text-align: right;
34
  :global(.ant-dropdown-trigger) {
陈帅's avatar
陈帅 committed
35
    margin-right: 24px;
36 37 38
  }
}

39 40
.content {
  flex: 1;
41
  padding: 32px 0;
42 43 44 45 46 47 48 49 50 51 52
}

@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 {
陈帅's avatar
陈帅 committed
53
    padding: 32px 0 24px;
54
  }
55 56 57 58 59 60 61 62 63
}

.top {
  text-align: center;
}

.header {
  height: 44px;
  line-height: 44px;
afc163's avatar
afc163 committed
64 65 66
  a {
    text-decoration: none;
  }
67 68 69 70
}

.logo {
  height: 44px;
ddcat1115's avatar
ddcat1115 committed
71
  margin-right: 16px;
72
  vertical-align: top;
73 74 75
}

.title {
afc163's avatar
afc163 committed
76
  position: relative;
afc163's avatar
afc163 committed
77
  top: 2px;
78 79 80 81
  color: @heading-color;
  font-weight: 600;
  font-size: 33px;
  font-family: Avenir, 'Helvetica Neue', Arial, Helvetica, sans-serif;
82 83 84 85 86
}

.desc {
  margin-top: 12px;
  margin-bottom: 40px;
87 88
  color: @text-color-secondary;
  font-size: @font-size-base;
89
}