253 lines
5.8 KiB
Plaintext
253 lines
5.8 KiB
Plaintext
@charset "UTF-8";
|
||
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
/* 透明度 */
|
||
/* 文章场景相关 */
|
||
.banner {
|
||
height: 360rpx;
|
||
overflow: hidden;
|
||
position: relative;
|
||
background-color: #ccc;
|
||
}
|
||
.banner-img {
|
||
width: 100%;
|
||
}
|
||
.banner-title {
|
||
max-height: 84rpx;
|
||
overflow: hidden;
|
||
position: absolute;
|
||
left: 30rpx;
|
||
bottom: 30rpx;
|
||
width: 90%;
|
||
font-size: 32rpx;
|
||
font-weight: 400;
|
||
line-height: 42rpx;
|
||
color: white;
|
||
z-index: 11;
|
||
}
|
||
.article-meta {
|
||
padding: 20rpx 40rpx;
|
||
display: flex;
|
||
flex-direction: row;
|
||
justify-content: flex-start;
|
||
color: gray;
|
||
}
|
||
.article-text {
|
||
font-size: 26rpx;
|
||
line-height: 50rpx;
|
||
margin: 0 20rpx;
|
||
}
|
||
.article-author,
|
||
.article-time {
|
||
font-size: 30rpx;
|
||
}
|
||
.article-content {
|
||
padding: 0 30rpx;
|
||
overflow: hidden;
|
||
font-size: 30rpx;
|
||
margin-bottom: 30rpx;
|
||
}
|
||
/*
|
||
Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
|
||
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
||
*/
|
||
.cke_editable {
|
||
font-size: 26rpx;
|
||
line-height: 2;
|
||
/* Fix for missing scrollbars with RTL texts. (#10488) */
|
||
word-wrap: break-word;
|
||
/* Widget Styles */
|
||
}
|
||
.cke_editable ._blockquote {
|
||
font-style: italic;
|
||
font-family: Georgia, Times, "Times New Roman", serif;
|
||
padding: 4rpx 0;
|
||
border-style: solid;
|
||
border-color: #ccc;
|
||
border-width: 0;
|
||
}
|
||
.cke_editable ._a {
|
||
color: #0782C1;
|
||
}
|
||
.cke_editable ._ol, .cke_editable ._ul, .cke_editable ._dl {
|
||
/* IE7: reset rtl list margin. (#7334) */
|
||
/* *margin-right: 0px; */
|
||
/* Preserved spaces for list items with text direction different than the list. (#6249,#8049)*/
|
||
margin-left: 0px;
|
||
}
|
||
.cke_editable ._ul {
|
||
display: block !important;
|
||
list-style-type: disc !important;
|
||
-webkit-margin-before: 1em;
|
||
margin-block-start: 1em;
|
||
-webkit-margin-after: 1em;
|
||
margin-block-end: 1em;
|
||
-webkit-margin-start: 0px;
|
||
margin-inline-start: 0px;
|
||
-webkit-margin-end: 0px;
|
||
margin-inline-end: 0px;
|
||
-webkit-padding-start: 80rpx;
|
||
padding-inline-start: 80rpx;
|
||
}
|
||
.cke_editable ._ul ._li {
|
||
display: list-item !important;
|
||
list-style: disc !important;
|
||
}
|
||
.cke_editable ._ol {
|
||
display: block !important;
|
||
list-style-type: decimal !important;
|
||
-webkit-margin-before: 1em;
|
||
margin-block-start: 1em;
|
||
-webkit-margin-after: 1em;
|
||
margin-block-end: 1em;
|
||
-webkit-margin-start: 0px;
|
||
margin-inline-start: 0px;
|
||
-webkit-margin-end: 0px;
|
||
margin-inline-end: 0px;
|
||
-webkit-padding-start: 80rpx;
|
||
padding-inline-start: 80rpx;
|
||
}
|
||
.cke_editable ._ol ._li {
|
||
display: list-item !important;
|
||
list-style-type: inherit !important;
|
||
}
|
||
.cke_editable ._h1, .cke_editable ._h2, .cke_editable ._h3, .cke_editable ._h4, .cke_editable ._h5, .cke_editable ._h6 {
|
||
font-weight: normal;
|
||
line-height: 1.2;
|
||
}
|
||
.cke_editable ._hr {
|
||
border: 0px;
|
||
border-top: 1px solid #ccc;
|
||
}
|
||
.cke_editable ._img.right {
|
||
border: 1px solid #ccc;
|
||
float: right;
|
||
margin-left: 15px;
|
||
padding: 5px;
|
||
}
|
||
.cke_editable ._img.left {
|
||
border: 1px solid #ccc;
|
||
float: left;
|
||
margin-right: 15px;
|
||
padding: 5px;
|
||
}
|
||
.cke_editable ._pre {
|
||
white-space: pre-wrap;
|
||
/* CSS 2.1 */
|
||
word-wrap: break-word;
|
||
/* IE7 */
|
||
tab-size: 4;
|
||
}
|
||
.cke_editable .marker {
|
||
background-color: Yellow;
|
||
}
|
||
.cke_editable ._span[lang] {
|
||
font-style: italic;
|
||
}
|
||
.cke_editable ._figure {
|
||
text-align: center;
|
||
outline: solid 1px #ccc;
|
||
background: rgba(0, 0, 0, 0.05);
|
||
padding: 10px;
|
||
margin: 10px 20px;
|
||
display: inline-block;
|
||
}
|
||
.cke_editable ._figure > ._figcaption {
|
||
text-align: center;
|
||
display: block;
|
||
/* For IE8 */
|
||
}
|
||
.cke_editable ._a > ._img {
|
||
padding: 1px;
|
||
margin: 1px;
|
||
border: none;
|
||
outline: 1px solid #0782C1;
|
||
}
|
||
.cke_editable .code-featured {
|
||
border: 5px solid red;
|
||
}
|
||
.cke_editable .math-featured {
|
||
padding: 20px;
|
||
box-shadow: 0 0 2px #c80000;
|
||
background-color: rgba(255, 0, 0, 0.05);
|
||
margin: 10px;
|
||
}
|
||
.cke_editable .image-clean {
|
||
border: 0;
|
||
background: none;
|
||
padding: 0;
|
||
}
|
||
.cke_editable .image-clean > ._figcaption {
|
||
font-size: .9em;
|
||
text-align: right;
|
||
}
|
||
.cke_editable .image-grayscale {
|
||
background-color: white;
|
||
color: #666;
|
||
}
|
||
.cke_editable .image-grayscale ._img {
|
||
-webkit-filter: grayscale(100%);
|
||
filter: grayscale(100%);
|
||
}
|
||
.cke_editable ._img.image-grayscale {
|
||
-webkit-filter: grayscale(100%);
|
||
filter: grayscale(100%);
|
||
}
|
||
.cke_editable .embed-240p {
|
||
max-width: 426px;
|
||
max-height: 240px;
|
||
margin: 0 auto;
|
||
}
|
||
.cke_editable .embed-360p {
|
||
max-width: 640px;
|
||
max-height: 360px;
|
||
margin: 0 auto;
|
||
}
|
||
.cke_editable .embed-480p {
|
||
max-width: 854px;
|
||
max-height: 480px;
|
||
margin: 0 auto;
|
||
}
|
||
.cke_editable .embed-720p {
|
||
max-width: 1280px;
|
||
max-height: 720px;
|
||
margin: 0 auto;
|
||
}
|
||
.cke_editable .embed-1080p {
|
||
max-width: 1920px;
|
||
max-height: 1080px;
|
||
margin: 0 auto;
|
||
}
|
||
.cke_contents_ltr ._blockquote {
|
||
padding-left: 20px;
|
||
padding-right: 8px;
|
||
border-left-width: 5px;
|
||
}
|
||
.cke_contents_rtl ._blockquote {
|
||
padding-left: 8px;
|
||
padding-right: 20px;
|
||
border-right-width: 5px;
|
||
}
|
||
|