This commit is contained in:
Pascal Engélibert
2023-05-26 14:49:50 +02:00
parent 9386e1bf8b
commit df0cde7f95
4 changed files with 57 additions and 17 deletions

View File

@ -10,6 +10,7 @@
@import "services";
@import "square_box";
@import "team";
@import "timeline";
#dev-warning {
position: fixed;

25
sass/css/timeline.scss Normal file
View File

@ -0,0 +1,25 @@
@import "defs";
.timeline {
}
.timeline-item {
width: 50%;
box-sizing: border-box;
margin: 0;
padding: 16px;
}
.timeline-left {
position: relative;
border: 1px solid $blue;
border-radius: 16px 0 0 16px;
}
.timeline-right {
position: relative;
left: 50%;
margin-left: -1px;
border: 1px solid $blue;
border-radius: 0 16px 16px 0;
}