mirror of
https://github.com/documize/community.git
synced 2025-08-02 12:05:23 +02:00
67 lines
981 B
SCSS
67 lines
981 B
SCSS
.section-wizard {
|
|
margin: 20px 0 30px 0;
|
|
|
|
> .canvas {
|
|
padding: 0;
|
|
|
|
> .list {
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
> .item {
|
|
list-style: none;
|
|
cursor: pointer;
|
|
padding: 10px 0;
|
|
margin: 5px 0;
|
|
@include ease-in();
|
|
|
|
&:hover {
|
|
@include ease-in();
|
|
|
|
> .details {
|
|
> .title {
|
|
color: $color-primary;
|
|
}
|
|
|
|
> .desc {
|
|
color: $color-primary;
|
|
}
|
|
}
|
|
}
|
|
|
|
.icon {
|
|
text-align: center;
|
|
display: inline-block;
|
|
width: 50px;
|
|
|
|
> .img {
|
|
float: left;
|
|
text-align: center;
|
|
display: inline-block;
|
|
height: 40px;
|
|
width: 40px;
|
|
}
|
|
}
|
|
|
|
> .details {
|
|
vertical-align: top;
|
|
display: inline-block;
|
|
width: 80%;
|
|
|
|
> .title {
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
color: $color-off-black;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
> .desc {
|
|
color: $color-gray;
|
|
font-size: 0.9rem;
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|