123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- .score {
- margin: 20px 0;
- // color: #fff;
- display: flex;
- align-items: center;
- padding-left: 60px;
- margin-bottom: 20px;
- }
- .scoreRight {
- margin-left: 30px;
- h3 {
- font-size: 24px;
- margin-bottom: 14px;
- }
- .time {
- margin-bottom: 14px;
- color: #666;
- }
- }
- .card {
- border-radius: 8px;
- box-shadow: 2px 0 8px 0 rgba(0, 0, 0, 0.3);
- padding: 20px;
- padding-left: 30px;
- border: 1px solid #eee;
- margin: 10px 0;
- background: rgba(255, 255, 255, 0.6);
- h3 {
- // color: #fff;
- font-size: 24px;
- margin-bottom: 20px;
- }
- ul {
- margin: 0;
- padding: 0;
- li {
- font-size: 20px;
- margin-bottom: 16px;
- &:last-child {
- margin-bottom: 0;
- }
- }
- }
- i {
- display: inline-block;
- width: 10px;
- height: 10px;
- background-color: #30edfd;
- border-radius: 50%;
- margin-right: 8px;
- }
- }
- .card2 {
- .card;
- i {
- background-color: #ffc800;
- }
- }
|