-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (50 loc) · 793 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
body{
background: rgb(39,40,34);
color: #a8a7a8;
}
#diagram {
position: absolute;
padding-top: 10px;
left: 0px;
top: 0px;
width: 100%;
height: 90%;
}
.task {
margin: 1px;
height: 20px;
width: 10px;
background-color: #00BFFF;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
.task:hover {
background-color: #0174DF;
}
.percent {
height: 20px;
width: 10px;
background-color: #0080FF;
}
#infoBox {
visibility: hidden;
position: relative;
background-color: #D9EACC;
border-radius: 10px;
width: 200px;
height: auto;
padding: 10px;
color: #7C847B;
font-family: "verdana";
font-size: 11px;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
.division {
position: absolute;
top: 0px;
width: 1px;
height: 100%;
background-color: #A4A4A4;
z-index: -1;
}