187 lines
2.8 KiB
Plaintext
187 lines
2.8 KiB
Plaintext
page {
|
|
background: #0c0e12;
|
|
color: #f6f6fc
|
|
}
|
|
|
|
.page {
|
|
min-height: 100vh;
|
|
background: #0c0e12;
|
|
position: relative;
|
|
overflow-x: hidden;
|
|
box-sizing: border-box
|
|
}
|
|
|
|
.ambient-glow {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 80vw;
|
|
max-width: 800px;
|
|
height: 400px;
|
|
background: radial-gradient(circle, rgba(193, 156, 255, .08) 0%, rgba(12, 14, 18, 0) 70%);
|
|
pointer-events: none;
|
|
z-index: 0
|
|
}
|
|
|
|
.topbar {
|
|
position: relative;
|
|
z-index: 10;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 24rpx 32rpx
|
|
}
|
|
|
|
.close-btn {
|
|
width: 72rpx;
|
|
height: 72rpx;
|
|
border-radius: 9999rpx;
|
|
background: #000;
|
|
color: #aaabb0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1rpx solid rgba(255, 255, 255, .1)
|
|
}
|
|
|
|
.spacer {
|
|
width: 72rpx;
|
|
height: 72rpx
|
|
}
|
|
|
|
.content {
|
|
position: relative;
|
|
z-index: 10;
|
|
height: calc(100vh - 120rpx);
|
|
padding: 16rpx 32rpx 48rpx;
|
|
box-sizing: border-box
|
|
}
|
|
|
|
.header {
|
|
margin-bottom: 40rpx
|
|
}
|
|
|
|
.title {
|
|
display: block;
|
|
font-size: 56rpx;
|
|
font-weight: 800;
|
|
line-height: 1.1
|
|
}
|
|
|
|
.subtitle {
|
|
display: block;
|
|
margin-top: 10rpx;
|
|
color: #aaabb0;
|
|
font-size: 26rpx
|
|
}
|
|
|
|
.segmented {
|
|
display: flex;
|
|
width: fit-content;
|
|
padding: 8rpx;
|
|
background: #000;
|
|
border: 1rpx solid rgba(255, 255, 255, .1);
|
|
border-radius: 9999rpx;
|
|
margin-bottom: 40rpx;
|
|
box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, .2)
|
|
}
|
|
|
|
.seg {
|
|
padding: 18rpx 32rpx;
|
|
border-radius: 9999rpx;
|
|
color: #aaabb0;
|
|
font-size: 24rpx
|
|
}
|
|
|
|
.active {
|
|
background: #1d2025;
|
|
color: #c19cff;
|
|
font-weight: 700
|
|
}
|
|
|
|
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 28rpx
|
|
}
|
|
|
|
.field {
|
|
display: flex;
|
|
flex-direction: column
|
|
}
|
|
|
|
.label {
|
|
font-size: 22rpx;
|
|
color: #aaabb0;
|
|
font-weight: 700;
|
|
margin: 0 0 12rpx 4rpx
|
|
}
|
|
|
|
.muted {
|
|
color: rgba(170, 171, 176, .5);
|
|
font-weight: 400
|
|
}
|
|
|
|
.input-shell {
|
|
min-height: 92rpx;
|
|
border-radius: 24rpx;
|
|
background: #000;
|
|
border: 1rpx solid rgba(255, 255, 255, .1);
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
align-items: center
|
|
}
|
|
|
|
.input {
|
|
width: 100%;
|
|
padding: 28rpx 26rpx;
|
|
font-size: 30rpx;
|
|
color: #f6f6fc;
|
|
box-sizing: border-box
|
|
|
|
}
|
|
|
|
.small {
|
|
font-size: 28rpx
|
|
}
|
|
|
|
.textarea-shell {
|
|
background: #111318
|
|
}
|
|
|
|
.textarea {
|
|
width: 100%;
|
|
min-height: 220rpx;
|
|
padding: 24rpx 26rpx;
|
|
font-size: 28rpx;
|
|
color: #f6f6fc;
|
|
box-sizing: border-box
|
|
}
|
|
|
|
.action-bar {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 18rpx;
|
|
padding-top: 28rpx;
|
|
margin-top: 36rpx;
|
|
border-top: 1rpx solid rgba(255, 255, 255, .05)
|
|
}
|
|
|
|
.cancel-btn,
|
|
.save-btn {
|
|
border-radius: 9999rpx;
|
|
padding: 22rpx 34rpx;
|
|
font-weight: 700
|
|
}
|
|
|
|
.cancel-btn {
|
|
background: #000;
|
|
color: #f6f6fc;
|
|
border: 1rpx solid rgba(255, 255, 255, .1)
|
|
}
|
|
|
|
.save-btn {
|
|
background: linear-gradient(90deg, #c19cff, #9146ff);
|
|
color: #fff
|
|
} |