-
Notifications
You must be signed in to change notification settings - Fork 0
/
widget-styles.css
100 lines (82 loc) · 1.24 KB
/
widget-styles.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
#container, #chart-container, #widget, #response {
width: 98%;
max-width: 600px;
}
@media only screen and (max-width: 500px) {
p, li, button, input {
font-size: 0.8em;
}
h1 {
font-size: 18pt;
}
}
#container {
border-radius: 12px;
background-color: rgba(173,216,230,0.6);
border-style: solid;
border-width: 1px;
}
#chart-container, #response {
display: none;
}
#widget, #response {
border-top-left-radius: 12px;
border-top-right-radius: 12px;
}
#header {
height: 100px;
}
p {
margin-left: 20px;
margin-right: 20px;
text-align: center;
}
h1, h3 {
text-align: center;
font-family: "PT Sans", serif;
}
h3 {
margin-left: 10px;
margin-right: 10px;
}
#search {
text-align: center;
padding-top: 30px;
}
text, p, li, button, input {
font-size: 1em;
font-family: "PT Sans", serif;
}
#submit {
margin-top: 5px;
}
#source {
font-size: 0.7em;
display: inline;
}
button {
margin-bottom: 10px;
}
.chart{
width: 100%;
height: 120px;
}
.axis text, .label {
font: 0.8em sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.d3-tip {
line-height: 1;
font-size: 1em;
padding: 3px;
color: rgb(0,0,0);
border-radius: 2px;
}
#options {
margin-right: 50px;
}