44 lines
669 B
CSS
Executable File
44 lines
669 B
CSS
Executable File
.row{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 98%;
|
|
margin: 0 auto;
|
|
padding: 10px;
|
|
font-size: 12px;
|
|
color: #909090;
|
|
height: 100px;
|
|
background: pink;
|
|
}
|
|
.row .num{
|
|
width: 100px;
|
|
text-align: center;
|
|
font-size: 22px;
|
|
color: #FA0306;
|
|
font-weight: 400;
|
|
/* height: 100px; */
|
|
}
|
|
.row .info{
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: space-between;
|
|
text-align: left;
|
|
flex: 2;
|
|
|
|
}
|
|
.row .info .info_{
|
|
font-size: 15px;
|
|
color: #525252;
|
|
|
|
}
|
|
.row .info .time{
|
|
font-size: 13px;
|
|
color: #666;
|
|
margin:10px 0px 20px;
|
|
}
|
|
.row .info .valid{
|
|
font-size: 13px;
|
|
color: #666;
|
|
padding-left: 10px;
|
|
} |