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.
36 lines
599 B
36 lines
599 B
@import '../../style/mixins';
|
|
@import '../../style/themes/default';
|
|
|
|
.am-carousel {
|
|
position: relative;
|
|
|
|
&-wrap {
|
|
font-size: 18 * @hd;
|
|
color: @color-text-base;
|
|
background: none;
|
|
text-align: center;
|
|
zoom: 1;
|
|
width: 100%;
|
|
|
|
&-dot {
|
|
display: inline-block;
|
|
zoom: 1;
|
|
|
|
> span {
|
|
display: block;
|
|
width: 8 * @hd;
|
|
height: 8 * @hd;
|
|
margin: 0 3 * @hd;
|
|
border-radius: @radius-circle;
|
|
background: @color-icon-base;
|
|
}
|
|
|
|
&-active {
|
|
> span {
|
|
background: #888;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|