-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopt.css
151 lines (129 loc) · 2.24 KB
/
opt.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/* Title: Optional Practical Training (OPT) Timeline
Created by: Ivanna Rodriguez, Ivan Lainez, and Sarah Samuel
Created for MATH W82: Data Visualization with D3
Date: January 2020
*/
h1 {
font-family: 'Fjalla One', sans-serif;
color: #97252B;
}
p{
font-family:'Roboto', sans-serif;
font-size: 1rem;
font-weight: 400;
line-height: 1.3;
}
.creds{
font-size: medium;
font-family:'Roboto', sans-serif;
}
/*dropdown formatting*/
label{
font-family:'Roboto', sans-serif;
font-size: medium;
}
input:focus, select:focus{
outline: none;
border: 1px solid black;
}
input {
width: 145px;
font-family:'Roboto', sans-serif;
}
span {
margin: 5px;
display: inline-block;
text-align: left;
}
select {
width: 200px;
font-family:'Roboto', sans-serif;
}
button {
font-family:'Roboto', sans-serif;
color:white;
background-color: black;
border: none;
text-align: center;
opacity: 0.7;
height: 25px;
cursor: pointer;
}
button:hover{
opacity: 0.5;
}
/*SVG Formatting*/
.blackline, line#blackline{
stroke: black;
stroke-width: 5;
opacity: 1;
}
.tooltip{
font-size: small;
font-family:'Roboto', sans-serif;
background-color: black;
color: white;
opacity: 0.7;
width:300px;
left: 450px;
top: 310px;
padding-top: 20px;
padding-right: 20px;
padding-bottom: 20px;
padding-left: 20px;
}
.note{
font-size: small;
font-family:'Roboto', sans-serif;
}
.dottedline{
stroke: black;
opacity: 0.5;
stroke-dasharray: 2;
stroke-width: 5;
fill: none;
}
.grad{
fill: #97252B;
opacity: 0.5;
}
.endpoint{
fill : black;
opacity: 0.3;
}
.stem {
fill : black;
opacity: 0.3;
/*visibility: hidden;*/
}
line#dottedline{
stroke: black;
opacity: 0.5;
stroke-dasharray: 2;
stroke-width: 5;
fill: none;
}
.USCISLabel {
font-family: 'Fjalla One', sans-serif;
fill: black;
font-size: medium;
text-anchor: middle;
}
.datelabels, .stemdatelabels, .labels, .stemlabels {
font-family: 'Fjalla One', sans-serif;
fill: black;
font-size: small;
text-anchor: middle;
}
.gradlabel {
font-family: 'Fjalla One', sans-serif;
fill: white;
font-size: large;
opacity: 1;
}
.graddatelabel{
font-family: 'Fjalla One', sans-serif;
fill: white;
font-size: small;
text-anchor: middle;
}