ant-design-blazor/components/result/style/index.less

75 lines
1.3 KiB
Plaintext
Raw Normal View History

@import '../../style/themes/default';
@import '../../style/mixins/index';
@result-prefix-cls: ~'@{ant-prefix}-result';
.@{result-prefix-cls} {
padding: 48px 32px;
// status color
2021-01-25 08:31:53 +08:00
&-success &-icon > .@{iconfont-css-prefix} {
color: @success-color;
}
2021-01-25 08:31:53 +08:00
&-error &-icon > .@{iconfont-css-prefix} {
color: @error-color;
}
2021-01-25 08:31:53 +08:00
&-info &-icon > .@{iconfont-css-prefix} {
color: @info-color;
}
2021-01-25 08:31:53 +08:00
&-warning &-icon > .@{iconfont-css-prefix} {
color: @warning-color;
}
// Exception Status image
&-image {
width: 250px;
height: 295px;
margin: auto;
}
&-icon {
margin-bottom: 24px;
text-align: center;
2021-01-25 08:31:53 +08:00
> .@{iconfont-css-prefix} {
2020-04-30 10:55:54 +08:00
font-size: @result-icon-font-size;
}
}
&-title {
color: @heading-color;
2020-04-30 10:55:54 +08:00
font-size: @result-title-font-size;
line-height: 1.8;
text-align: center;
}
&-subtitle {
color: @text-color-secondary;
2020-04-30 10:55:54 +08:00
font-size: @result-subtitle-font-size;
line-height: 1.6;
text-align: center;
}
&-extra {
2020-04-30 10:55:54 +08:00
margin: @result-extra-margin;
text-align: center;
> * {
margin-right: 8px;
&:last-child {
margin-right: 0;
}
}
}
&-content {
margin-top: 24px;
padding: 24px 40px;
background-color: @background-color-light;
}
}
2020-03-23 13:51:37 +08:00
@import './rtl';