.page-header {
|
background: linear-gradient(var(--td-primary-color-7), var(--td-primary-color-3));
|
min-height: 30vh;
|
padding-bottom: var(--td-spacer);
|
}
|
|
.flex-h {
|
display: flex;
|
justify-content: space-between;
|
}
|
|
.page-header .title {
|
font-size: 20px;
|
font-weight: 600;
|
margin-top: 8px;
|
}
|
|
.page-header .tag {
|
font-size: 12px;
|
color: var(--td-text-color-secondary);
|
margin-top: 8px;
|
/* background-color: red; */
|
text-align: end;
|
}
|
|
.page-header .btn {
|
border-radius: 20px;
|
line-height: 20px;
|
background: linear-gradient(to right, #6EF0A5, #62EAD2);
|
padding: 8px 4px;
|
text-align: center;
|
color: white;
|
width: 30vw;
|
margin-top: 50px;
|
}
|
|
.page-header .file {
|
width: 40vw;
|
height: 25vh;
|
border-radius: var(--td-border-radius);
|
background-color: var(--td-bg-color);
|
}
|
|
.p-cell{
|
position: relative;
|
padding: 8px;
|
}
|
|
.p-title{
|
font-weight: 600;
|
font-size: 14px;
|
color: #5CE395;
|
}
|
|
.p-content{
|
margin-top: 16px;
|
margin-bottom: 16px;
|
font-size: 16px;
|
font-weight: 600;
|
}
|
|
.p-tag{
|
color: var(--td-text-color-secondary);
|
font-size: 10px;
|
}
|
|
.p-btn{
|
position: absolute;
|
top: 0;
|
right: 0;
|
border-radius: 4px;
|
background: linear-gradient(to right, #6EF0A5, #62EAD2);
|
padding: 4px 16px;
|
color: white;
|
font-size: 14px;
|
}
|