|
123456789101112131415161718192021222324252627282930 |
- .block {
- display: block;
- width: 100px;
- height: 40px;
- align-items: center;
- display: flex;
-
- .icon {
- width: 80px;
- height: 100px;
- }
-
- .right {
- flex: 1;
- display: flex;
- flex-direction: column;
-
- .value {
- font-weight: bold;
- font-size: 24px;
- color: #FFFFFF;
- text-shadow: 0px 3px 2px #05357D;
- }
-
- .name {
- color: rgba(185, 211, 235, 1);
- font-size: 12px;
- }
- }
- }
|