-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
131 lines (108 loc) · 2.01 KB
/
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
.line{
fill: none;
stroke: steelblue;
stroke-width: 3px;
}
.dot{
stroke: #fff;
}
.text{
font-size: 4;
}
.node {
cursor: pointer;
}
.node circle {
fill: #fff;
stroke: steelblue;
stroke-width: 3px;
}
.link {
fill: none;
stroke: #ccc;
stroke-width: 2px;
}
.node rect {
cursor: move;
fill-opacity: .9;
shape-rendering: crispEdges;
}
.node text {
font-family: 'Roboto', sans-serif;
pointer-events: none;
text-shadow: 0 1px 0 #fff;
}
.link {
fill: none;
stroke: #000;
stroke-opacity: .2;
}
.link:hover {
stroke-opacity: .5;
}
.myAnimation {
width: 50px;
height: 50px;
position: absolute;
background-color: red;
}
#chart{
width: 1600px;
height: 800px;
background-color: #f7f7f7;
margin: 25px auto;
border: 1px solid black;
position: relative;
}
.rect{
width: 50px;
height: 100px;
border: 2px;
border-radius: 10px 10px 10px 10px;
}
.bar{
display: inline-block;
width: 25px;
height: 300px;
background-color: #7ed26d;
margin-right: 5px;
}
.title{
width: 100%;
text-align: center;
background-color: #003DA5;
color: white;
text-transform: capitalize;
font-size: 16px;
padding: 32px;
font-family: 'Roboto', sans-serif;
}
.SubTitle{
width: 50%;
text-align: left;
background-color: #505456;
color: white;
text-transform: capitalize;
font-size: 16px;
padding: 20px;
font-family: 'Roboto', sans-serif;
}
.buttons{
padding: 10px;
width: 50%;
}
.button{
display: inline-block;
background-color: #2a9edd; /* light blue */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
font-size: 14px;
cursor: pointer;
font-family: 'Roboto', sans-serif;
}
.button:active{background-color:black;}
.button:hover{background-color:orange;}
.button:target{background-color:yellow;}