diff -r 877d8796b86d -r dab2a16500e0 client/src/App.scss --- a/client/src/App.scss Thu Jun 01 18:46:34 2017 +0200 +++ b/client/src/App.scss Thu Jun 01 19:01:03 2017 +0200 @@ -43,3 +43,35 @@ from { transform: rotate(0deg); } to { transform: rotate(360deg); } } + +.note { + position: relative; + padding-left: 70px; + margin-bottom: 20px; + + &:before { + content: ""; + position: absolute; + top: 0; + bottom: 0; + left: 27px; + z-index: -1; + display: block; + width: 2px; + background-color: #e6ebf1; + } + + .start, .finish { + position: absolute; + background-color: #fff; + } + + .start { + top: 0; + left: 0; + } + .finish { + bottom: 0; + left: 0; + } +}