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

.result {
ddcat1115's avatar
ddcat1115 committed
4 5
  width: 72%;
  margin: 0 auto;
6
  text-align: center;
jim's avatar
jim committed
7 8 9
  @media screen and (max-width: @screen-xs) {
    width: 100%;
  }
10 11

  .icon {
12
    margin-bottom: 24px;
ddcat1115's avatar
ddcat1115 committed
13 14
    font-size: 72px;
    line-height: 72px;
15 16 17 18 19 20 21 22 23 24 25

    & > .success {
      color: @success-color;
    }

    & > .error {
      color: @error-color;
    }
  }

  .title {
26
    margin-bottom: 16px;
27 28
    color: @heading-color;
    font-weight: 500;
29
    font-size: 24px;
ddcat1115's avatar
ddcat1115 committed
30
    line-height: 32px;
31 32 33
  }

  .description {
34 35
    margin-bottom: 24px;
    color: @text-color-secondary;
36
    font-size: 14px;
nikogu's avatar
nikogu committed
37
    line-height: 22px;
38 39 40
  }

  .extra {
ddcat1115's avatar
ddcat1115 committed
41
    padding: 24px 40px;
42
    text-align: left;
43 44
    background: #fafafa;
    border-radius: @border-radius-sm;
jim's avatar
jim committed
45 46 47 48

    @media screen and (max-width: @screen-xs) {
      padding: 18px 20px;
    }
49 50
  }

ddcat1115's avatar
ddcat1115 committed
51
  .actions {
ddcat1115's avatar
ddcat1115 committed
52
    margin-top: 32px;
ddcat1115's avatar
ddcat1115 committed
53 54 55 56

    button:not(:last-child) {
      margin-right: 8px;
    }
57 58
  }
}