45 lines
699 B
SCSS
45 lines
699 B
SCSS
.demo-border .text {
|
|
width: 15%;
|
|
}
|
|
.demo-border .line {
|
|
width: 70%;
|
|
}
|
|
.demo-border .line div {
|
|
width: 100%;
|
|
height: 0;
|
|
border-top: 1px solid #eee;
|
|
}
|
|
.demo-border .line .dashed {
|
|
border-top: 2px dashed #eee;
|
|
}
|
|
.demo-shadow {
|
|
height: 100px;
|
|
width: 50%;
|
|
border: 1px solid #eee;
|
|
}
|
|
.demo-shadow-text {
|
|
line-height: 50px;
|
|
color: #666;
|
|
font-size: 14px;
|
|
}
|
|
.demo-radius .title {
|
|
color: #666;
|
|
font-size: 18px;
|
|
margin: 10px 0;
|
|
}
|
|
.demo-radius .value {
|
|
color: #333;
|
|
font-size: 16px;
|
|
margin: 10px 0;
|
|
}
|
|
.demo-radius .radius {
|
|
height: 60px;
|
|
width: 70%;
|
|
border: 1px solid #d7dae2;
|
|
border-radius: 0;
|
|
margin-top: 20px;
|
|
}
|
|
.demo-radius .radius-30 {
|
|
border-radius: 30px;
|
|
}
|