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

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

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

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

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

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

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

  .extra {
ddcat1115's avatar
ddcat1115 committed
41
    background: #fafafa;
ddcat1115's avatar
ddcat1115 committed
42
    padding: 24px 40px;
43 44
    border-radius: @border-radius-sm;
    text-align: left;
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
  }
}