149 lines
2.2 KiB
Plaintext
149 lines
2.2 KiB
Plaintext
.container {
|
|
padding: 16px;
|
|
background-color: #f5f7fa;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.section {
|
|
margin-bottom: 24px;
|
|
background-color: white;
|
|
border-radius: 12px;
|
|
padding: 16px;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.input-section {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: #333;
|
|
margin-bottom: 8px;
|
|
display: block;
|
|
}
|
|
|
|
.section-desc {
|
|
font-size: 14px;
|
|
color: #666;
|
|
margin-bottom: 16px;
|
|
display: block;
|
|
}
|
|
|
|
.dream-title {
|
|
width: 100%;
|
|
padding: 12px 16px;
|
|
border: 1px solid #e5e7eb;
|
|
border-radius: 8px;
|
|
font-size: 16px;
|
|
background-color: white;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.segment {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.segment:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.segment-header {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.segment-title {
|
|
font-size: 16px;
|
|
color: #4a6fa5;
|
|
margin-left: 8px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.segment-content {
|
|
width: 100%;
|
|
min-height: 80px;
|
|
padding: 12px 16px;
|
|
border: 1px solid #e5e7eb;
|
|
border-radius: 8px;
|
|
font-size: 15px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.tags-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|
|
|
|
.tag {
|
|
padding: 6px 14px;
|
|
background-color: #f1f5f9;
|
|
border-radius: 20px;
|
|
font-size: 14px;
|
|
color: #475569;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.tag-selected {
|
|
background-color: #4a6fa5;
|
|
color: white;
|
|
}
|
|
|
|
.emotions-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
gap: 15px;
|
|
}
|
|
|
|
.emotion {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 80px;
|
|
height: 80px;
|
|
background-color: #f1f5f9;
|
|
border-radius: 12px;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.emotion text {
|
|
margin-top: 8px;
|
|
font-size: 14px;
|
|
color: #475569;
|
|
}
|
|
|
|
.emotion-selected {
|
|
background-color: #4a6fa5;
|
|
}
|
|
|
|
.emotion-selected text {
|
|
color: white;
|
|
}
|
|
|
|
.emotion-selected icon {
|
|
color: white;
|
|
}
|
|
|
|
.save-btn {
|
|
width: 100%;
|
|
padding: 14px 0;
|
|
background-color: #4a6fa5;
|
|
color: white;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
border-radius: 8px;
|
|
margin-top: 16px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.save-btn::after {
|
|
border: none;
|
|
}
|