-
Notifications
You must be signed in to change notification settings - Fork 0
/
lieferantenkredit.html
81 lines (67 loc) · 1.37 KB
/
lieferantenkredit.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<style>.timebeam {
width:800px;
display:block;
margin-top: 100px;
margin-left: 100px;
}
.line {
width: 100%;
background: gray;
margin: 50px 0;
height: 3px;
}
.top,
.bottom {
display: flex;
flex-direction: row;
}
.top .top-element,
.bottom .bottom-element {
padding: 0 25px;
position: relative;
}
.top-element:before {
content: "I";
height: 20px;
width: 20px;
line-height: 20px;
text-align: center;
border-radius: 50%;
background: #C33900;
color: white;
position: absolute;
left: 0;
}
.top-element:before {
bottom: -63px;
}
.top-element:after,
.bottom-element:after {
content: "";
height: 50px;
width: 2px;
background: #8ACCC6;
position: absolute;
}
.top-element:after {
left: 10px;
bottom: -40px;
}
.bottom-element:after {
left: 10px;
top: -40px;
}
</style>
<div class="container">
<div class="top">
<div class="top-element">Rechnungseingang</div>
<div class="top-element">Tag 10</div>
<div class="top-element">Tag 30</div>
</div>
<div class="line"></div>
<div class="bottom">
<div class="bottom-element">Lorem bottom 1</div>
<div class="bottom-element">Lorem bottom 2</div>
<div class="bottom-element">Lorem bottom 3</div>
</div>
</div>