system-copyright-react/src/components/card/card-proj.css

77 lines
1.2 KiB
CSS
Raw Normal View History

2024-03-13 16:11:28 +08:00
.card-proj {
border-radius: 6px;
border: 1px solid var(--color-border);
padding: 15px;
}
.card-proj .left {
position: unset;
}
.card-proj .right {
margin: 0;
}
.card-proj .title {
display: flex;
justify-content: space-between;
align-items: center;
}
.card-proj hr {
border-color: var(--color-border);
border-style: dashed;
border-left: 0;
border-bottom: 0;
border-right: 0;
margin-block-start: 10px;
margin-block-end: 10px;
}
.card-proj .title .left {
padding: 5px;
font-weight: bold;
}
.card-proj .title .right {
padding: 5px;
}
.card-proj .title .right span {
margin-left: 10px;
}
.card-proj .title .right span:first-child {
margin-left: 0;
}
.card-proj .body {
width: unset;
border: unset !important;
padding: 0 !important;
}
.card-proj .body .line {
display: flex;
justify-content: space-between;
align-items: center;
padding: 5px 0;
}
.card-proj .body .line .left {
display: flex;
}
.card-proj .body .line .left span {
margin-right: 10px;
}
.card-proj .body .line .right span {
margin-left: 5px;
}
.card-proj .body .line .right span a {
margin-left: 5px;
}