-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (54 loc) · 792 Bytes
/
style.css
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
body {
font: 16px sans-serif;
}
#table {
margin: 100px;
padding: 25px 0;
position: relative;
}
.task {
height: 20px;
line-height: 20px;
margin: 10px 0;
position: relative;
}
.name {
margin-right: 25px;
position: absolute;
right: 100%;
text-align: right;
}
#labels {
display: flex;
position: absolute;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;
}
.column {
flex: 1;
height: 100%;
}
.line {
height: 100%;
border-left: 1px solid black;
border-bottom: 1px solid black;
}
.label {
padding-top: 10px;
padding-left: 5px;
border-left: 1px solid black;
}
#axis {
position: absolute;
top: 100%;
width: 100px;
padding-top: 11px;
}
.job {
box-sizing: border-box;
height: 100%;
border: 1px solid black;
position: absolute;
}