127 lines
3.4 KiB
SCSS
Vendored
127 lines
3.4 KiB
SCSS
Vendored
.iq-timeline {
|
|
margin: 0 0 0 20px;
|
|
padding: 0;
|
|
width: 100%;
|
|
li {
|
|
margin-left: 2.188rem;
|
|
position: relative;
|
|
padding: 15px 15px 0 5px;
|
|
list-style-type: none;
|
|
.timeline-dots {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: -54px;
|
|
border: 3px solid #05bbc9;
|
|
border-radius: 90px;
|
|
padding: 5px;
|
|
background: #ffffff;
|
|
height: 2.5rem;
|
|
width: 2.5rem;
|
|
line-height: 25px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
&:before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 50%;
|
|
-webkit-transform: translateX(-50%);
|
|
-moz-transform: translateX(-50%);
|
|
-ms-transform: translateX(-50%);
|
|
-o-transform: translateX(-50%);
|
|
transform: translateX(-50%);
|
|
width: 2px;
|
|
height: 100%;
|
|
background-color: #ccc;
|
|
}
|
|
}
|
|
.iq-timeline {
|
|
ul {
|
|
li {
|
|
width: 50%;
|
|
padding: 5px 30px 2.5rem 30px;
|
|
cursor: pointer;
|
|
margin: 0px;
|
|
&:nth-child(odd) {
|
|
float: left;
|
|
text-align: right;
|
|
clear: both;
|
|
.timeline-dots {
|
|
right: -8px;
|
|
left: auto;
|
|
}
|
|
.time {
|
|
padding-left: 10px;
|
|
right: -145px;
|
|
-webkit-box-shadow: 0px 0px 0px 3px rgba(80, 181, 255, 0.3);
|
|
-moz-box-shadow: 0px 0px 0px 3px rgba(80, 181, 255, 0.3);
|
|
-ms-box-shadow: 0px 0px 0px 3px rgba(80, 181, 255, 0.3);
|
|
-o-box-shadow: 0px 0px 0px 3px rgba(80, 181, 255, 0.3);
|
|
box-shadow: 0px 0px 0px 3px rgba(80, 181, 255, 0.3);
|
|
}
|
|
}
|
|
&:nth-child(even) {
|
|
float: right;
|
|
text-align: left;
|
|
clear: both;
|
|
.timeline-dots {
|
|
left: -8px;
|
|
right: auto;
|
|
}
|
|
.time {
|
|
text-align: right;
|
|
padding-right: 10px;
|
|
left: -145px;
|
|
-webkit-box-shadow: 0px 0px 0px 3px rgba(73, 240, 211, 0.3);
|
|
-moz-box-shadow: 0px 0px 0px 3px rgba(73, 240, 211, 0.3);
|
|
-ms-box-shadow: 0px 0px 0px 3px rgba(73, 240, 211, 0.3);
|
|
-o-box-shadow: 0px 0px 0px 3px rgba(73, 240, 211, 0.3);
|
|
box-shadow: 0px 0px 0px 3px rgba(73, 240, 211, 0.3);
|
|
}
|
|
}
|
|
.time {
|
|
position: absolute;
|
|
top: 15px;
|
|
background-color: #05bbc9;
|
|
color: #fff;
|
|
text-align: left;
|
|
width: 120px;
|
|
height: 28px;
|
|
line-height: 28px;
|
|
border-radius: 20px;
|
|
}
|
|
}
|
|
}
|
|
li {
|
|
.timeline-dots {
|
|
height: 15px;
|
|
width: 15px;
|
|
background: #fff !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 575px) {
|
|
.iq-timeline {
|
|
ul {
|
|
li {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
.time {
|
|
width: 90px;
|
|
}
|
|
&:nth-child(odd) {
|
|
.time {
|
|
right: -115px;
|
|
}
|
|
}
|
|
&:nth-child(even) {
|
|
.time {
|
|
left: -115px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|