32 lines
386 B
Plaintext
32 lines
386 B
Plaintext
|
|
.block {
|
||
|
|
color: var(--td-text-color-secondary);
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.block--top,
|
||
|
|
.block--bottom {
|
||
|
|
width: 100vw;
|
||
|
|
height: 240px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.block--left,
|
||
|
|
.block--right {
|
||
|
|
width: 280px;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.block--center {
|
||
|
|
width: 240px;
|
||
|
|
height: 240px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.wrapper {
|
||
|
|
margin-bottom: 32rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.wrapper:last-child {
|
||
|
|
margin-bottom: 0;
|
||
|
|
}
|