You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
281 lines
6.1 KiB
281 lines
6.1 KiB
@import url('https://fonts.googleapis.com/css2?family=Oswald&family=PT+Serif:ital,wght@0,400;0,700;1,400&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap');
|
|
|
|
@media print {
|
|
body {
|
|
margin: 0 !important;
|
|
}
|
|
}
|
|
|
|
.main-container {
|
|
--ckeditor5-preview-height: 650px;
|
|
position: relative;
|
|
font-family: '宋体';
|
|
width: fit-content;
|
|
height: 100%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.ck-content {
|
|
font-family: '宋体';
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.editor-container__editor-wrapper {
|
|
display: flex;
|
|
width: fit-content;
|
|
}
|
|
|
|
.editor-container_document-editor {
|
|
border: 1px solid var(--ck-color-base-border);
|
|
}
|
|
|
|
.editor-container_document-editor .editor-container__toolbar {
|
|
display: flex;
|
|
position: relative;
|
|
box-shadow: 0 2px 3px hsla(0, 0%, 0%, 0.078);
|
|
}
|
|
|
|
.editor-container_document-editor .editor-container__toolbar>.ck.ck-toolbar {
|
|
flex-grow: 1;
|
|
width: 0;
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
border-top: 0;
|
|
border-left: 0;
|
|
border-right: 0;
|
|
}
|
|
|
|
.editor-container_document-editor .editor-container__menu-bar>.ck.ck-menu-bar {
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
border-top: 0;
|
|
border-left: 0;
|
|
border-right: 0;
|
|
}
|
|
|
|
.editor-container_document-editor .editor-container__editor-wrapper {
|
|
max-height: var(--ckeditor5-preview-height);
|
|
min-height: var(--ckeditor5-preview-height);
|
|
overflow-y: scroll;
|
|
background: var(--ck-color-base-foreground);
|
|
}
|
|
|
|
.editor-container_document-editor .editor-container__editor {
|
|
margin-top: 28px;
|
|
margin-bottom: 28px;
|
|
height: 100%;
|
|
}
|
|
|
|
.editor-container_document-editor .editor-container__editor .ck.ck-editor__editable {
|
|
box-sizing: border-box;
|
|
min-width: calc(210mm + 2px);
|
|
max-width: calc(210mm + 2px);
|
|
min-height: 297mm;
|
|
height: fit-content;
|
|
padding: 20mm 12mm;
|
|
border: 1px hsl(0, 0%, 82.7%) solid;
|
|
background: hsl(0, 0%, 100%);
|
|
box-shadow: 0 2px 3px hsla(0, 0%, 0%, 0.078);
|
|
flex: 1 1 auto;
|
|
margin-left: 72px;
|
|
margin-right: 72px;
|
|
}
|
|
|
|
/*侧边栏出现时其他右移*/
|
|
.main-container.sidebar-open .editor-container__menu-bar,
|
|
.main-container.sidebar-open .editor-container__toolbar,
|
|
.main-container.sidebar-open .editor-container__editor-wrapper {
|
|
transition: margin-left 0.3s ease;
|
|
margin-left: 350px;
|
|
}
|
|
|
|
/*用户定义的style插件样式*/
|
|
.ck-content h3.category {
|
|
font-family: 'Oswald';
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
color: #555;
|
|
letter-spacing: 10px;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.ck-content h2.document-title {
|
|
font-family: 'Oswald';
|
|
font-size: 50px;
|
|
font-weight: bold;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
|
|
.ck-content h3.document-subtitle {
|
|
font-family: 'Oswald';
|
|
font-size: 20px;
|
|
color: #555;
|
|
margin: 0 0 1em;
|
|
font-weight: bold;
|
|
padding: 0;
|
|
}
|
|
|
|
.ck-content p.info-box {
|
|
--background-size: 30px;
|
|
--background-color: #e91e63;
|
|
padding: 1.2em 2em;
|
|
border: 1px solid var(--background-color);
|
|
background: linear-gradient(135deg,
|
|
var(--background-color) 0%,
|
|
var(--background-color) var(--background-size),
|
|
transparent var(--background-size)),
|
|
linear-gradient(135deg,
|
|
transparent calc(100% - var(--background-size)),
|
|
var(--background-color) calc(100% - var(--background-size)),
|
|
var(--background-color));
|
|
border-radius: 10px;
|
|
margin: 1.5em 2em;
|
|
box-shadow: 5px 5px 0 #ffe6ef;
|
|
}
|
|
|
|
.ck-content blockquote.side-quote {
|
|
font-family: 'Oswald';
|
|
font-style: normal;
|
|
float: right;
|
|
width: 35%;
|
|
position: relative;
|
|
border: 0;
|
|
overflow: visible;
|
|
z-index: 1;
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.ck-content blockquote.side-quote::before {
|
|
content: '“';
|
|
position: absolute;
|
|
top: -37px;
|
|
left: -10px;
|
|
display: block;
|
|
font-size: 200px;
|
|
color: #e7e7e7;
|
|
z-index: -1;
|
|
line-height: 1;
|
|
}
|
|
|
|
.ck-content blockquote.side-quote p {
|
|
font-size: 2em;
|
|
line-height: 1;
|
|
}
|
|
|
|
.ck-content blockquote.side-quote p:last-child:not(:first-child) {
|
|
font-size: 1.3em;
|
|
text-align: right;
|
|
color: #555;
|
|
}
|
|
|
|
.ck-content span.marker {
|
|
background: yellow;
|
|
}
|
|
|
|
.ck-content span.spoiler {
|
|
background: #000;
|
|
color: #000;
|
|
}
|
|
|
|
.ck-content span.spoiler:hover {
|
|
background: #000;
|
|
color: #fff;
|
|
}
|
|
|
|
.ck-content pre.fancy-code {
|
|
border: 0;
|
|
margin-left: 2em;
|
|
margin-right: 2em;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.ck-content pre.fancy-code::before {
|
|
content: '';
|
|
display: block;
|
|
height: 13px;
|
|
background: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NCAxMyI+CiAgPGNpcmNsZSBjeD0iNi41IiBjeT0iNi41IiByPSI2LjUiIGZpbGw9IiNGMzZCNUMiLz4KICA8Y2lyY2xlIGN4PSIyNi41IiBjeT0iNi41IiByPSI2LjUiIGZpbGw9IiNGOUJFNEQiLz4KICA8Y2lyY2xlIGN4PSI0Ny41IiBjeT0iNi41IiByPSI2LjUiIGZpbGw9IiM1NkM0NTMiLz4KPC9zdmc+Cg==);
|
|
margin-bottom: 8px;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.ck-content pre.fancy-code-dark {
|
|
background: #272822;
|
|
color: #fff;
|
|
box-shadow: 5px 5px 0 #0000001f;
|
|
}
|
|
|
|
.ck-content pre.fancy-code-bright {
|
|
background: #dddfe0;
|
|
color: #000;
|
|
box-shadow: 5px 5px 0 #b3b3b3;
|
|
}
|
|
|
|
.ck-content p.gradientborder {
|
|
--borderWidth: 12px;
|
|
--bRadius: 5px;
|
|
width: 60%;
|
|
height: 60%;
|
|
position: relative;
|
|
z-index: 0;
|
|
overflow: hidden;
|
|
padding: 2rem;
|
|
z-index: 0;
|
|
border-radius: --bRadius;
|
|
|
|
&::after,
|
|
&::before {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
&::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: -50%;
|
|
top: -50%;
|
|
width: 200%;
|
|
height: 200%;
|
|
z-index: -2;
|
|
background-repeat: no-repeat;
|
|
background-size: 50% 50%, 50% 50%;
|
|
background-position: 0 0, 100% 0, 100% 100%, 0 100%;
|
|
background-image: linear-gradient(#399953, #399953), linear-gradient(#fbb300, #fbb300), linear-gradient(#d53e33, #d53e33), linear-gradient(#377af5, #377af5);
|
|
animation: rotate 4s linear infinite;
|
|
|
|
@keyframes rotate {
|
|
100% {
|
|
transform: rotate(1turn);
|
|
}
|
|
}
|
|
}
|
|
|
|
&::after {
|
|
content: '';
|
|
position: absolute;
|
|
z-index: -1;
|
|
left: calc(var(--borderWidth) / 2);
|
|
top: calc(var(--borderWidth) / 2);
|
|
width: calc(100% - var(--borderWidth));
|
|
height: calc(100% - var(--borderWidth));
|
|
background: white;
|
|
border-radius: --bRadius;
|
|
/* 这一行是为了方便查看原来的样子的 */
|
|
animation: opacityChange 3s infinite alternate;
|
|
}
|
|
|
|
@keyframes opacityChange {
|
|
50% {
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
opacity: .5;
|
|
}
|
|
}
|
|
} |