35 lines
502 B
CSS
35 lines
502 B
CSS
.content{
|
|
|
|
|
|
}
|
|
ul{
|
|
display: flex;
|
|
justify-content: space-around;
|
|
padding-left: 0.2rem;
|
|
padding-right: 0.2rem;
|
|
margin-top: 1rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
ul li{
|
|
flex-shrink: 0;
|
|
width: 25%;
|
|
text-align: center;
|
|
margin-bottom: .54rem;
|
|
overflow:hidden;
|
|
text-overflow:ellipsis;
|
|
white-space:nowrap;
|
|
|
|
|
|
}
|
|
ul li a{
|
|
font-size: .3rem;
|
|
|
|
|
|
|
|
}
|
|
ul li p{
|
|
font-size: 0.1rem;
|
|
color: var--themeColor;
|
|
margin-top: 0.5rem;
|
|
}
|