blob: 84f9685d6d01fb09a6dd0d00a1b016731e15f250 [file] [log] [blame]
Karthik Vegesna99012712017-07-20 12:07:23 -07001/* css for sample app custom view */
2
3#ov-sample-custom {
4 padding: 20px;
5}
6.light #ov-sample-custom {
7 color: navy;
8}
9.dark #ov-sample-custom {
10 color: #88f;
11}
12
13#ov-sample-custom .button-panel {
14 margin: 10px;
15 width: 200px;
16}
17
18.light #ov-sample-custom .button-panel {
19 background-color: #ccf;
20}
21.dark #ov-sample-custom .button-panel {
22 background-color: #444;
23}
24
25#ov-sample-custom .my-button {
26 cursor: pointer;
27 padding: 4px;
28 text-align: center;
29}
30
31.light #ov-sample-custom .my-button {
32 color: white;
33 background-color: #8b8386;
34}
35.dark #ov-sample-custom .my-button {
36 color: black;
37 background-color: #aaa;
38}
39
40#ov-sample-custom .number {
41 font-size: 140%;
42 text-align: right;
43}
44
45#ov-sample-custom .quote {
46 margin: 10px 20px;
47 font-style: italic;
48}
49
50.bar rect {
51 fill: steelblue;
52}
53
54.bar text {;
55 font: 15px sans-serif;
56}
57
58
59.chart div {
60 font: 10px sans-serif;
61 background-color: steelblue;
62 text-align: right;
63 padding: 3px;
64 margin: 1px;
65 color: white;
66}
67 body {
68 width: 1450px;
69 height: 500px;
70 position: relative;
71 background-color:#DFE5EA;
72 }
73
74 svg {
75 width: 100%;
76 height: 100%;
77 position: center;
78 }
79
80 .toolTip {
81 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
82 position: absolute;
83 display: none;
84 width: auto;
85 height: auto;
86 background: none repeat scroll 0 0 white;
87 border: 0 none;
88 border-radius: 8px 8px 8px 8px;
89 box-shadow: -3px 3px 15px #888888;
90 color: black;
91 font: 12px sans-serif;
92 padding: 5px;
93 text-align: center;
94 }
95
96 text {
97 font: 17px sans-serif;
98 }
99 text.value {
100 font-size: 150%;
101 fill: white;
102 }
103
104 .axisHorizontal path{
105 fill: none;
106 }
107
108 .axisHorizontal .tick line {
109 stroke-width: 1;
110 stroke: rgba(0, 0, 0, 0.2);
111 }
112
113 .bar {
114 fill: steelblue;
115 fill-opacity: .9;
116 }