element-plus/website/demo-styles/carousel.scss
kooriookami d9b7ef56ea
style(docs): Optimized style of documentation (#3010)
* style(docs): use css var

* style: update

* style: demo-icon use grid layout

* style: remove demo-block.vue style scoped

* docs: remove strange character
2021-08-26 09:57:56 +08:00

46 lines
851 B
SCSS

.demo-carousel .block {
padding: 30px;
text-align: center;
border-right: solid 1px var(--el-border-color-base);
display: inline-block;
width: 49%;
box-sizing: border-box;
&:last-child {
border-right: none;
}
}
.demo-carousel .demonstration {
display: block;
color: var(--el-text-color-secondary);
font-size: 14px;
margin-bottom: 20px;
}
.demo-carousel .#{$namespace}-carousel__container {
text-align: center;
}
.demo-carousel .#{$namespace}-carousel__item {
h3 {
color: var(--el-color-white);
font-size: 18px;
line-height: 300px;
margin: 0;
&.small {
font-size: 14px;
line-height: 150px;
}
&.medium {
font-size: 14px;
line-height: 200px;
}
}
&:nth-child(2n) {
background-color: #99a9bf;
}
&:nth-child(2n + 1) {
background-color: #d3dce6;
}
}