Files
design-themes/website_animate/static/src/scss/o_animate_editor.scss
T
2021-05-11 15:59:09 +02:00

54 lines
1.5 KiB
SCSS

// variables
$o-animate-timeline-bg-color: #F7F7F7;
$o-animate-timeline-border-bottom : 1px solid #EAEAEA;
$o-animate-timeline-height: 5px;
$o-animate-timeline-duration-color: #21b799;
$o-animate-timeline-delay-color: #A4498C;
// default style
.o_we_customize_panel {
.o_anim_li > a > i {
color: orange!important;
}
span.timeline {
display: block;
width: 100%;
height: $o-animate-timeline-height;
margin-bottom: 5px;
position: relative;
background-color: $o-animate-timeline-bg-color;
border-bottom: $o-animate-timeline-border-bottom;
> span {
float: left;
display: inline-block;
position: relative;
height: $o-animate-timeline-height;
}
span[simulate="duration"] {
position: absolute;
float: left;
left: 0;
height: 100%;
background: $o-animate-timeline-duration-color;
width: 0%;
animation-name: o_animate_timeline_duration;
animation-timing-function: linear;
animation-fill-mode: forwards;
}
span[simulate="delay"] {
position: absolute;
float: left;
left: 0;
height: 100%;
background: $o-animate-timeline-delay-color;
width: 0%;
animation-name: o_animate_timeline_delay;
animation-timing-function: linear;
animation-fill-mode: forwards;
}
}
}