mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 09:50:58 +08:00
d9b7ef56ea
* style(docs): use css var * style: update * style: demo-icon use grid layout * style: remove demo-block.vue style scoped * docs: remove strange character
238 lines
3.6 KiB
SCSS
238 lines
3.6 KiB
SCSS
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB',
|
|
'Microsoft YaHei', SimSun, sans-serif;
|
|
font-weight: 400;
|
|
-webkit-font-smoothing: antialiased;
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
&.is-component {
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
body {
|
|
padding-top: 80px;
|
|
height: calc(100% - 80px);
|
|
}
|
|
|
|
#app {
|
|
height: 100%;
|
|
|
|
&.is-component {
|
|
overflow-y: hidden;
|
|
|
|
.main-cnt {
|
|
padding: 0;
|
|
margin-top: 0;
|
|
height: 100%;
|
|
min-height: auto;
|
|
}
|
|
|
|
.headerWrapper {
|
|
position: fixed;
|
|
width: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 1500;
|
|
|
|
.container {
|
|
padding: 0 40px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: var(--el-color-primary);
|
|
text-decoration: none;
|
|
}
|
|
|
|
code {
|
|
background-color: #f9fafc;
|
|
padding: 0 4px;
|
|
border: 1px solid var(--el-border-color-base);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
select,
|
|
textarea {
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
line-height: inherit;
|
|
color: inherit;
|
|
}
|
|
|
|
.hljs {
|
|
line-height: 1.8;
|
|
font-family: Menlo, Monaco, Consolas, Courier, monospace;
|
|
font-size: 12px;
|
|
padding: 18px 24px;
|
|
background-color: #fafafa;
|
|
border: solid 1px var(--el-border-color-base);
|
|
margin-bottom: 25px;
|
|
border-radius: 4px;
|
|
-webkit-font-smoothing: auto;
|
|
}
|
|
|
|
.main-cnt {
|
|
padding-bottom: 340px;
|
|
box-sizing: border-box;
|
|
min-height: 100%;
|
|
}
|
|
|
|
.container,
|
|
.page-container {
|
|
//width: 1140px;
|
|
padding: 0 40px;
|
|
}
|
|
|
|
.page-container {
|
|
padding-top: 55px;
|
|
|
|
h1 {
|
|
margin-top: 8px;
|
|
margin-bottom: 20px;
|
|
color: rgba(0, 0, 0, .85);
|
|
font-weight: 500;
|
|
font-size: 30px;
|
|
}
|
|
|
|
h2, h3, h4, h5, h6 {
|
|
margin: 1.6em 0 .6em;
|
|
font-weight: 500;
|
|
color: rgba(0, 0, 0, .85);
|
|
}
|
|
|
|
h2 {
|
|
font-size: 24px;
|
|
line-height: 36px;
|
|
color: #1f2d3d;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 18px;
|
|
}
|
|
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5 {
|
|
|
|
&:hover a {
|
|
opacity: 0.4;
|
|
}
|
|
|
|
a {
|
|
float: left;
|
|
margin-left: -20px;
|
|
opacity: 0;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
opacity: 0.4;
|
|
}
|
|
}
|
|
}
|
|
|
|
p {
|
|
font-size: 14px;
|
|
color: #303133;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
.tip {
|
|
padding: 8px 16px;
|
|
background-color: var(--el-color-primary-light-9);
|
|
border-radius: 4px;
|
|
border-left: var(--el-color-primary) 5px solid;
|
|
margin: 20px 0;
|
|
|
|
code {
|
|
background-color: rgba(255, 255, 255, 0.7);
|
|
color: #445368;
|
|
}
|
|
}
|
|
|
|
.warning {
|
|
padding: 8px 16px;
|
|
background-color: var(--el-color-danger-lighter);
|
|
border-radius: 4px;
|
|
border-left: var(--el-color-danger) 5px solid;
|
|
margin: 20px 0;
|
|
|
|
ul {
|
|
color: #5e6d82;
|
|
}
|
|
|
|
code {
|
|
background-color: rgba(255, 255, 255, 0.7);
|
|
color: #445368;
|
|
}
|
|
}
|
|
}
|
|
.demo {
|
|
margin: 20px 0;
|
|
}
|
|
@media (max-width: 1140px) {
|
|
.container,
|
|
.page-container {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.container,
|
|
.page-container {
|
|
padding: 0 20px;
|
|
}
|
|
|
|
#app.is-component .headerWrapper .container {
|
|
padding: 0 12px;
|
|
}
|
|
}
|
|
|
|
.element-doc {
|
|
.example-code {
|
|
position: relative;
|
|
|
|
.lang-mark {
|
|
position: absolute;
|
|
bottom: .5rem;
|
|
color: #909399;
|
|
font-family: inherit;
|
|
font-size: .7rem;
|
|
font-weight: 700;
|
|
right: 1rem;
|
|
text-transform: uppercase;
|
|
user-select: none;
|
|
}
|
|
}
|
|
|
|
blockquote {
|
|
margin: 1em 0;
|
|
padding-left: .8em;
|
|
color: #909399;
|
|
font-size: 90%;
|
|
border-left: 4px solid #f0f0f0;
|
|
|
|
p {
|
|
color: inherit;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.element-plus__link {
|
|
|
|
.el-icon {
|
|
vertical-align: text-top;
|
|
line-height: 1.5em;
|
|
}
|
|
}
|
|
}
|