-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathborder.css
120 lines (107 loc) · 1.89 KB
/
border.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
@function stroke($stroke, $color) {
$shadow: ();
$from: $stroke*-1;
@for $i from $from through $stroke {
@for $j from $from through $stroke {
$shadow: append($shadow, $i*1px $j*1px 0 $color, comma);
}
}
@return $shadow;
}
.perc{
/*font: 12px QlikView Sans;
font-weight: bold;
text-transform:capitalize;
fill:#000000;*/
}
.mainBars rect{
shape-rendering: auto;
fill-opacity: 0;
stroke-width: 0.5px;
stroke: rgb(0, 0,0);
stroke-opacity: 0;
}
.subBars{
shape-rendering:crispEdges;
}
.edges{
stroke:none;
fill-opacity:0.5;
}
.headerHP{
text-anchor:middle;
font-size:16px;
}
/*line{
stroke:grey;
}*/
.viz-biPartite-mainBar .perc{
/*fill:#190000;*/
text-anchor:middle;
/*font: 20px QlikView Sans;*/
/*font-weight: bold;*/
text-transform:capitalize;
}
.RGraph_tooltipNone{
display:none;
}
/* DivTable.com */
.divTable{
display: table;
width: 80%;
}
.divTableRow {
display: table-row;
}
.divTableHeading {
background-color: #EEE;
display: table-header-group;
}
.divTableCell, .divTableHead {
/*border: 1px solid #999999;*/
display: table-cell;
padding: 3px 3px;
}
.divTableHeading {
background-color: #EEE;
display: table-header-group;
font-weight: bold;
}
.divTableFoot {
background-color: #EEE;
display: table-footer-group;
font-weight: bold;
}
.divTableBody {
display: table-row-group;
}
.dot {
height: 9px;
width: 9px;
/*background-color: red;*/
border-radius: 40%;
border: 1px solid black;
display: inline-block;
}
.arrow{
border: solid;
border-width: 0 3px 3px 0;
display: inline-block;
padding: 3px;
}
.rightArrow {
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
}
.leftArrow {
transform: rotate(135deg);
-webkit-transform: rotate(135deg);
}
.upArrow {
transform: rotate(-135deg);
-webkit-transform: rotate(-135deg);
}
.downArrow {
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
}