127 lines
2.1 KiB
Plaintext
127 lines
2.1 KiB
Plaintext
/* pages/main/journal-creater/index.wxss */
|
|
.container {
|
|
|
|
.content {
|
|
width: calc(100% - 64px);
|
|
padding: 0 32px 32px 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
|
|
.label {
|
|
color: var(--theme-text-secondary);
|
|
}
|
|
|
|
.section {
|
|
width: 100%;
|
|
margin-top: 1.5rem;
|
|
|
|
&.time {
|
|
display: flex;
|
|
|
|
.picker {
|
|
margin-right: .25rem;
|
|
}
|
|
}
|
|
|
|
&.media {
|
|
|
|
.ctrl {
|
|
display: flex;
|
|
|
|
.clear {
|
|
width: 100px;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
|
|
.gallery {
|
|
gap: 10rpx;
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
.item {
|
|
height: 200rpx;
|
|
position: relative;
|
|
overflow: hidden;
|
|
background: var(--theme-bg-card);
|
|
box-shadow: 1px 1px 6px var(--theme-shadow-light);
|
|
border-radius: 2rpx;
|
|
|
|
&.add {
|
|
color: var(--theme-wx);
|
|
margin: 0;
|
|
font-size: 80rpx;
|
|
background: transparent;
|
|
}
|
|
|
|
.thumbnail {
|
|
width: 200rpx;
|
|
height: 200rpx;
|
|
display: block;
|
|
}
|
|
|
|
.video-container {
|
|
position: relative;
|
|
|
|
|
|
.play-icon {
|
|
top: 50%;
|
|
left: 50%;
|
|
color: rgba(255, 255, 255, .8);
|
|
z-index: 2;
|
|
position: absolute;
|
|
font-size: 128rpx;
|
|
transform: translate(-50%, -50%);
|
|
text-shadow: 4rpx 4rpx 0 rgba(0, 0, 0, .5);
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
.delete {
|
|
top: 10rpx;
|
|
right: 10rpx;
|
|
color: rgba(255, 255, 255, .6);
|
|
z-index: 3;
|
|
position: absolute;
|
|
font-size: 45rpx;
|
|
|
|
&::after {
|
|
content: "";
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -1;
|
|
position: absolute;
|
|
background: rgba(0, 0, 0, .6);
|
|
border-radius: 50%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.progress {
|
|
width: 100%;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.ctrl {
|
|
width: 100%;
|
|
display: flex;
|
|
margin-top: 1rem;
|
|
align-items: center;
|
|
|
|
.clear {
|
|
width: 200rpx;
|
|
}
|
|
|
|
.submit {
|
|
flex: 1;
|
|
margin-left: 12rpx;
|
|
}
|
|
}
|
|
}
|
|
} |