mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-08-26 07:42:24 +02:00
52 lines
1.2 KiB
CSS
52 lines
1.2 KiB
CSS
/* Source: https://www.bootdey.com/snippets/view/simple-horizontal-timeline#preview */
|
|
.hori-timeline .events {
|
|
border-top: 3px solid #e9ecef;
|
|
}
|
|
.hori-timeline .events .event-list {
|
|
display: block;
|
|
position: relative;
|
|
text-align: center;
|
|
padding-top: 70px;
|
|
margin-right: 0;
|
|
}
|
|
.hori-timeline .events .event-list:before {
|
|
content: "";
|
|
position: absolute;
|
|
height: 36px;
|
|
border-right: 2px dashed #dee2e6;
|
|
top: 0;
|
|
}
|
|
.hori-timeline .events .event-list .event-date {
|
|
position: absolute;
|
|
top: 38px;
|
|
left: 0;
|
|
right: 0;
|
|
width: max-content;
|
|
margin: 0 auto;
|
|
border-radius: 4px;
|
|
padding: 2px 10px;
|
|
font-size: 13px;
|
|
}
|
|
@media (min-width: 1140px) {
|
|
.hori-timeline .events .event-list {
|
|
display: inline-block;
|
|
width: 24%;
|
|
padding-top: 45px;
|
|
}
|
|
.hori-timeline .events .event-list .event-date {
|
|
top: -30px;
|
|
}
|
|
}
|
|
.bg-soft-primary {
|
|
background-color: rgba(64,144,203,.3)!important;
|
|
}
|
|
.bg-soft-success {
|
|
background-color: rgba(71,189,154,.3)!important;
|
|
}
|
|
.bg-soft-danger {
|
|
background-color: rgba(231,76,94,.3)!important;
|
|
}
|
|
.bg-soft-warning {
|
|
background-color: rgba(249,213,112,.3)!important;
|
|
}
|