73 lines
1.2 KiB
Plaintext
73 lines
1.2 KiB
Plaintext
.container {
|
|
background-color: var(--oak-bg-color-page);
|
|
// padding: 30px 32px;
|
|
}
|
|
|
|
|
|
.content {
|
|
background-color: var(--oak-bg-color-page);
|
|
// height: calc(100% - 40px);
|
|
//overflow-y: auto;
|
|
position: relative;
|
|
}
|
|
|
|
.editorContainer {
|
|
width: 850px;
|
|
margin: 30px auto 50px auto;
|
|
background: var(--oak-bg-color-container);
|
|
padding: 20px 50px 50px 50px;
|
|
box-shadow: 0 2px 10px rgb(0 0 0 / 12%);
|
|
}
|
|
|
|
.titleContainer {
|
|
padding: 5px 0;
|
|
border-bottom: 1px solid #e8e8e8;
|
|
}
|
|
|
|
.authorContainer {
|
|
padding: 5px 0;
|
|
//border-bottom: 1px solid #e8e8e8;
|
|
}
|
|
|
|
.input {
|
|
border: unset !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.titleInput {
|
|
border: unset !important;
|
|
box-shadow: none !important;
|
|
font-size: 18px !important;
|
|
font-weight: bold !important;
|
|
}
|
|
|
|
.input:hover {
|
|
border: unset !important;
|
|
}
|
|
|
|
.abstract {
|
|
width: 100%;
|
|
border-top: 1px solid #e8e8e8;
|
|
}
|
|
|
|
.card {
|
|
:global {
|
|
.ant-card-head {
|
|
border: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.footer {
|
|
// position: absolute;
|
|
bottom: 0;
|
|
height: 50px;
|
|
}
|
|
|
|
.contentNumber {
|
|
display: flex;
|
|
min-height: 32px;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
color: var(--oak-text-color-secondary);
|
|
} |