forgeplus-react/src/forge/Activity/activity.css

116 lines
1.7 KiB
CSS
Raw Normal View History

2020-03-16 14:12:11 +08:00
.trendsTop{
padding-bottom: 15px;
border-bottom:1px solid #ddd;
}
.pageDIV{
text-align: center;
margin-top: 20px;
margin-bottom: 40px;
}
.orderInfo{
padding:15px;
display: flex;
justify-content: space-between;
}
.orderInfo > div{
width: 45%;
}
.percentLine{
width: 100%;
display:flex;
height: 8px;
border-radius: 2px;
background: #888;
position: relative;
}
.percent_green{
background-color: #6cc644;
color: #6cc644;
}
.percent_purple{
background-color: #6e5494;
color: #6e5494;
}
.percent_red{
background-color: #d95c5c;
}
.green{
color: #6cc644;
}
.purple{
color: #6e5494;
}
.red{
color: #d95c5c;
}
.percentBox{
display: flex;
border-top: 1px solid #f4f4f4;
}
.percentBox > li{
display: flex;
flex-direction: column;
text-align: center;
flex: 1;
border-right: 1px solid #f4f4f4;
padding:20px 0px;
color: #4183c4;
}
.percentBox > li:last-child{
border-right: none;
}
.activity_list .activity_item{
border-bottom: 1px solid #f4f4f4;
padding:15px 0px;
display: flex;
align-items: flex-start;
}
2020-08-18 16:56:52 +08:00
.activity_list .activity_item:last-child{
border-bottom: none;
}
2020-03-16 14:12:11 +08:00
.prPercent > p{
position: absolute;
height: 100%;
top:0px;
left: 0px;
z-index: 0;
}
.prPercent > p.resetStyle{
left: unset;
right: 0px;
z-index: 1;
}
.itemLine{
display: flex;
align-items: center;
}
.activity_type{
display: block;
padding:0px 5px;
height: 20px;
line-height: 20px;
background: #6cc644;
margin-left: 10px;
color: #fff;
border-radius: 3px;
font-size: 12px;
}
.createImage{
margin-right: 5px;
height: 22px;
line-height: 22px;
border-radius: 50%;
2020-09-07 18:41:40 +08:00
width: 22px;
2020-03-16 14:12:11 +08:00
}
.change{
color: black;
cursor: pointer;
}
2021-11-30 18:34:41 +08:00
.change.active{
color: #466AFF !important;
}
2020-03-16 14:12:11 +08:00
.change:hover{
2021-12-01 08:51:17 +08:00
color: #466AFF;
2020-03-16 14:12:11 +08:00
}