48 lines
872 B
CSS
48 lines
872 B
CSS
.card-proj-download {
|
|
width: 309px;
|
|
padding: 20px 25px;
|
|
box-sizing: border-box;
|
|
|
|
background-color: #FFFBF5;
|
|
margin-bottom: 27px;
|
|
box-shadow: 0px 3px 0px 0px #EBDFD5;
|
|
border-radius: 4px;
|
|
}
|
|
.card-proj-nodownload{
|
|
width: 309px;
|
|
padding: 20px 25px;
|
|
box-sizing: border-box;
|
|
background-color: #f3f3f3;
|
|
margin-bottom: 27px;
|
|
border-radius: 4px;
|
|
}
|
|
.cpDown-bot{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
/* background-color: aqua; */
|
|
margin-top: 16px;
|
|
|
|
}
|
|
.cpDown-title {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.cpDown-desc {
|
|
font-weight: 300;
|
|
font-size: 14px;
|
|
color: #8B919D;
|
|
}
|
|
|
|
.cpDown-option {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.cpDown-edit {
|
|
color: var(--color-blue);
|
|
text-decoration: underline;
|
|
}
|
|
.cpDown-noedit:hover{
|
|
cursor: not-allowed;
|
|
} |