Style tweaks
[dygraphs.git] / gallery / gallery.css
CommitLineData
a0e87b38
RK
1@import url("../common/textarea.css");
2
c1f22b5a
RK
3body {
4 font-family: Helvetica Neue, Arial, Helvetica, sans-serif;
5 font-size: 90%;
6}
7
e2a5e398
RK
8aside {
9 font-size: 90%;
10}
11
c1f22b5a
RK
12#toc {
13 vertical-align: top;
14 width: 200px;
15}
2a3953eb
RK
16#gap {
17 style="width:0.5em;"
18}
c1f22b5a 19
2a3953eb 20#rhs, #lhs {
c1f22b5a
RK
21 vertical-align: top;
22}
23
2a3953eb
RK
24#subtitle a:visited {
25 color: blue;
26}
27
c1f22b5a
RK
28#workarea {
29 border-style: solid;
30 border-color: #ddd;
31 padding: 4px;
32}
33
34#toc .entry {
35 background-color: #eee;
36 padding: .7em;
37
38 /* These two lines result in indenting wrapped lines forward a little bit. */
39 /* text-indent: -1em;
40 padding-left: 1em; */
41}
42
19d9e7c5
RK
43#toc .entry:hover {
44 color: blue;
45 cursor: pointer;
46}
47
c1f22b5a 48#toc .entry .selected {
19d9e7c5 49 color: #090;
c1f22b5a
RK
50}
51
19d9e7c5 52#demotitle {
c1f22b5a
RK
53 text-align: center;
54 font-size: 1.5em;
55 vertical-align: bottom;
56}
57
19d9e7c5
RK
58.subdued:link,
59.subdued:visited,
60.subdued:active {
61 color: #000;
62}
63
64.subdued:hover {
65 color: blue;
66}
67
68a {
69 text-decoration: none;
70}
c1f22b5a
RK
71/* CSS for drawing tool */
72#workarea #drawing #tool_zoom {
73 background: url('images/tool-palette.png');
74 background-position: 0px 0px;
75 width: 32px;
76 height: 33px;
77 margin-left: 50px;
78 display: inline-block;
79}
80#workarea #drawing #tool_pencil {
81 background: url('images/tool-palette.png');
82 background-position: -32px 0px;
83 width: 32px;
84 height: 33px;
85 display: inline-block;
86}
87#workarea #drawing #tool_eraser {
88 background: url('images/tool-palette.png');
89 background-position: -64px 0px;
90 width: 33px;
91 height: 33px;
92 display: inline-block;
93}
94#workarea #drawing #toolbar {
95 display: inline-block;
96}
97
98/* CSS for independent series */
99#workarea #independent-series .thinborder {
100 border-width: 1px;
101 border-spacing: 0px;
102 border-style: solid;
103 border-color: black;
104 border-collapse: collapse;
105}
106
107#workarea #independent-series .thinborder td,
108#workarea #independent-series .thinborder th {
109 border-width: 1px;
110 padding: 5px;
111 border-style: solid;
112 border-color: black;
e2a5e398 113}
328d2cce
RK
114
115/* CSS for resize */
116#workarea #resize #div_g {
117 /* The left and top are just guesses, this needs a proper run-through */
118 position: absolute;
119 left: 200px;
120 right: 10px;
121 top: 100px;
122 bottom: 10px;
3381d8fa
RK
123}
124
125/* CSS for styled-chart-label */
126#workarea #styled-chart-labels .infotext {
127
128}
129
130#workarea #styled-chart-labels #div_g .dygraph-label {
131 /* This applies to the title, x-axis label and y-axis label */
132 font-family: Georgia, Verdana, serif;
133}
134
135#workarea #styled-chart-labels #div_g .dygraph-title {
136 /* This rule only applies to the chart title */
137 font-size: 36px;
138 text-shadow: gray 2px 2px 2px; /* color, delta-x, delta-y, blur radius */
139}
140
141#workarea #styled-chart-labels #div_g .dygraph-ylabel {
142 /* This rule only applies to the y-axis label */
143 font-size: 18px;
144 text-shadow: gray -2px 2px 2px; /* (offsets are in a rotated frame) */
145}
146
147#workarea #styled-chart-labels .chart {
148 border: 1px dashed black;
fec16662 149 margin: 5px 5px 5px 50px;
3381d8fa 150 padding: 2px;
fec16662
RK
151}
152
abfadf4c 153#workarea #temperature-sf-ny #bordered {
fec16662
RK
154 border: 1px solid red;
155}