123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- @import "~antd/lib/style/themes/default.less";
- @import "../../utils/utils.less";
- .cardList {
- margin-bottom: -24px;
- background: #fff;
- .card {
- :global {
- .ant-card-meta-title {
- margin-bottom: 12px;
- & > a {
- color: @heading-color;
- }
- }
- .ant-card-actions {
- background: #f7f9fa;
- }
- .ant-card-body:hover {
- .ant-card-meta-title > a {
- color: @primary-color;
- }
- }
- }
- }
- }
- .extraImg {
- margin-top: -60px;
- text-align: center;
- width: 195px;
- img {
- width: 100%;
- }
- }
- .newButton {
- margin-left: 5px;
- background-color: #fff;
- border-color: @border-color-base;
- border-radius: @border-radius-sm;
- color: @text-color-secondary;
- width: 100%;
- height: 293px;
- }
- .cardAvatar {
- width: 48px;
- height: 48px;
- border-radius: 48px;
- }
- .cardDescription {
- .textOverflowMulti();
- }
- .pageHeaderSearch {
- position: relative;
- }
- .contentLink {
- margin-top: 16px;
- a {
- margin-right: 32px;
- img {
- width: 24px;
- }
- }
- img {
- vertical-align: middle;
- margin-right: 8px;
- }
- }
- @media screen and (max-width: @screen-lg) {
- .contentLink {
- a {
- margin-right: 16px;
- }
- }
- }
- @media screen and (max-width: @screen-md) {
- .extraImg {
- display: none;
- }
- }
- @media screen and (max-width: @screen-sm) {
- .pageHeaderContent {
- padding-bottom: 30px;
- }
- .contentLink {
- position: absolute;
- left: 0;
- bottom: -4px;
- width: 1000px;
- a {
- margin-right: 16px;
- }
- img {
- margin-right: 4px;
- }
- }
- }
|