-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (105 loc) · 2.21 KB
/
style.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
/* make category selector invisible at load */
#subcategory-select {
display: none;
}
/* make sub-category selector invisible at load */
#subsubcategory-select {
display: none;
}
/* make upload form invisible at load */
#fileUploadForm {
display: none;
}
/* submit button after categories hidden at load */
#submit-btn {
display: none;
}
/* db-response form hidden at load */
#db-response-form {
display: none;
}
/* html table of database results
- blue border */
table.dt, th.dt, td.dt {
border: 1px solid #96D4D4;
}
/* spinner gif image */
#spinner {
display: none;
}
/* class of Rows of inactive employees being displayed */
.red-row {
background-color: hsl(0, 68%, 51%);
}
/* class of td's - censored columns for my documentation gif */
td.black-background {
background-color: #000000;
}
/* table row class for customer-service role */
tr.customer-service {
background-color: #C7E0F0;
}
/* table row class for dispatcher role */
tr.dispatcher {
background-color: #F8FACF;
}
/* table row class for expeditor role */
tr.expeditor {
background-color: #C7F0E2;
}
/* table row class for HR role */
tr.hr {
background-color: #C7D9C3;
}
/* table row class for messenger role */
tr.messenger {
background-color: #8ACBF7;
}
/* table row class for office-laborer role */
tr.office-laborer {
background-color: #FFF6E6;
}
/* table row class for ops-manager role */
tr.ops-manager {
background-color: #CEDDF5;
}
/* table row class for processor role */
tr.processor {
background-color: #F4FFE6;
}
/* table row class for supervisor role */
tr.supervisor {
background-color: #E9FFF5;
}
/* italicize words */
.italicized {
font-style: italic;
}
/* Space between two buttons (choose file, upload) */
.space {
width: 40px;
height: auto;
display: inline-block;
}
/* Linked button label thing */
#loadFileXml {
display: none;
}
/* Upload button */
#upload-btn {
display: inline-block;
}
/* a tag link to send git request to downloads.php and dl csv file */
#get-csv {
display: none;
}
.logout-form {
position: absolute;
right: 40px;
top: 40px;
}
.logout {
position: relative;
right: 0px;
top: 0px;
}