generated from usf-cs360-spring2020/template-bulma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scatter.css
130 lines (109 loc) · 1.72 KB
/
scatter.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
body {
color: #888;
/* font-family: serif; */
font-size:15px;
}
#svg_div {
border:1px solid #ccc;
/* margin-top: 2.5em;
margin-bottom: 2.5em;*/
}
.axis {
font: 12px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #aaa;
shape-rendering: crispEdges;
}
.axis text {
fill: #858585;
}
.title {
font: 500 100px serif;
fill: #e5e5e5;
}
.party {
font: 500 35px serif;
fill: #e5e5e5;
}
.incr {
font: 500 35px serif;
fill: #e5e5e5;
cursor: pointer;
}
.incr:hover {
fill: #ccc;
}
.circle {
stroke: white;
stroke-width: 0.2px;
/*https://stackoverflow.com/questions/5697067*/
cursor: pointer; /*grab; pointer; move; -webkit-grab;*/
fill-opacity: 0.9;
}
.circle:active {
/*Closed hand*/
/*https://stackoverflow.com/questions/5697067*/
cursor: grabbing;
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
}
.circle:hover {
fill-opacity: 0.8;
}
#searchform {
padding-bottom: 5px;
}
#formholder {
position: absolute;
right: 300px;
top: 920px;
/*font: 16px serif;*/
}
.incrbtn {
font: 500 30px serif;
cursor: pointer;
background-color: Transparent;
background-repeat:no-repeat;
border: none;
cursor:pointer;
overflow: hidden;
/*outline:none;*/
color: #e5e5e5;
}
.incrbtn:hover {
color: #ccc;
}
.year-button{
position: absolute;
/* z-index: auto; */
float: left;
margin-top: -90px;
margin-left: 50px;
}
#upclick {
position: absolute;
/* left: 285px;
top: 1410px; */
/*font: 16px serif;*/
}
#downclick {
position: absolute;
/* left:-34px; */
top:-30px;
/* left: 285px;
top: 1450px; */
/*font: 16px serif;*/
}
#select {
padding:5px 0px;
}
input {
/*font: 14px serif;*/
}
::placeholder{
font-color:#ccc;
opacity: 0.3;
}