You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
531 B
CSS
26 lines
531 B
CSS
/* #region 卡片内部连接列表样式 */
|
|
.card-body-flex {
|
|
padding: 0px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
align-content: center;
|
|
}
|
|
|
|
.card-body-flex li {
|
|
list-style: none;
|
|
margin: 5px;
|
|
padding: 5px;
|
|
font-size: 1rem;
|
|
border: 1px solid rebeccapurple;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.card-body-flex li a {
|
|
text-decoration-line: none;
|
|
}
|
|
|
|
/* #endregion */
|