123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- @import '~antd/lib/style/themes/default.less';
- .container {
- display: flex;
- flex-direction: column;
- height: 100vh;
- overflow: auto;
- background: @layout-body-background;
- }
- .lang {
- text-align: right;
- width: 100%;
- height: 40px;
- line-height: 44px;
- :global(.ant-dropdown-trigger) {
- margin-right: 24px;
- }
- }
- .content {
- padding: 32px 0;
- flex: 1;
- }
- @media (min-width: @screen-md-min) {
- .container {
- background-repeat: no-repeat;
- background-position: center center;
- }
- .content {
- padding: 32px 0 24px 0;
- }
- }
- .top {
- text-align: center;
- }
- .header {
- height: 50px;
- line-height: 50px;
- a {
- text-decoration: none;
- }
- }
- .logo {
- height: 44px;
- vertical-align: top;
- margin-right: 16px;
- }
- .title {
- font-size: 33px;
- color: @heading-color;
- font-family: Avenir, 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-weight: 600;
- position: relative;
- top: 2px;
- }
- .desc {
- font-size: @font-size-base;
- color: @text-color-secondary;
- margin-top: 12px;
- margin-bottom: 40px;
- }
|