| 123456789101112131415161718192021222324252627282930313233 |
- .listcard {
- color: blue;
- .list {
- display: flex;
- flex-wrap: wrap;
- .item {
- width: calc(25% - 10px);
- background: #58DCEC;
- margin: 0 10px 10px 0;
- height: 42px;
- cursor: pointer;
- .text {
- text-align: center;
- color: white;
- position: relative;
- top: 50%;
- transform: translate(0, -50%);
- }
- &-add {
- background: white;
- border: 1px solid #58dcec;
- color: #58dcec;
-
- .text-add {
- color: #58dcec;
- font-size: 20px;
- }
- }
- }
- }
- }
|