-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
179 lines (149 loc) · 2.82 KB
/
Copy pathstyles.css
File metadata and controls
179 lines (149 loc) · 2.82 KB
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
.column {
float: left;
width: 0;
min-width: 200px;
margin: 12px 15px;
flex-grow: 1;
}
.row {
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: stretch;
padding: 0;
margin: 0;
list-style: none;
}
body {
font-family: Verdana, sans-serif;
}
#species-input {
border-radius: 0.25rem;
background: whitesmoke;
border: 2px solid lightgrey;
margin: 12px 15px;
padding: 12px 15px;
}
.option-box {
border-radius: 0.25rem;
border: 2px solid lightgrey;
height: 100%;
box-sizing: border-box;
background-color: whitesmoke;
padding: 12px 15px;
}
.result-header {
background-color: #C8C8C8;
text-align: left;
}
.result-cell-odd {
background-color: #f3f3f3;
}
.textarea-wrapper {
margin: 12px 0px 12px 0px;
}
.input-textbox {
width: 100%;
max-width: 100%;
height: 200px;
vertical-align: bottom;
box-sizing: border-box;
border: 2px solid lightgrey;
}
#collection-availability {
border: 2px solid lightgrey;
margin: 12px 0px 12px 0px;
padding: 0.25rem;
max-height: 190px;
overflow-y: auto;
background-color: white;
}
.collection-even {
background: white;
}
.collection-odd {
background: #F0F0F0;
}
.option-description {
color: grey;
}
.search-wrapper {
margin: 1rem
}
#search {
width: 100%;
font-size: large;
font-weight: bold;
padding: 0.5rem;
}
.result-table {
width: 100%;
table-layout: fixed;
border-spacing: 0; /* collapse breaks the rounded corners. */
border-bottom: 2px solid lightgrey;
}
.result-table tbody tr {
cursor: pointer;
}
.result-header-cell {
border-top: 2px solid lightgrey;
border-left: 2px solid lightgrey;
border-bottom: 2px solid lightgrey;
background-color: whitesmoke;
text-align: left;
}
.result-table th:first-of-type {
border-radius: 0.25rem 0rem 0rem 0rem;
}
.result-table th:last-of-type {
border-radius: 0rem 0.25rem 0rem 0rem;
border-right: 2px solid lightgrey;
}
.result-table td:first-of-type {
border-left: 2px solid lightgrey;
}
.result-table td:last-of-type {
border-right: 2px solid lightgrey;
}
.result-cell-odd {
background-color: whitesmoke;
}
.result-table th,
.result-table td {
padding: 12px 15px;
word-wrap: break-word;
}
.result-row-expanded {
padding: 0px 15px 12px 15px !important;
}
.result-expanded {
border-radius: 0.25rem;
background-color: gainsboro;
overflow: hidden;
padding: 0px 15px
}
.tmp-expanded {
display:flex;
justify-content:center;
}
.pages-button {
margin-left: 0.1rem;
margin-right: 0.1rem;
}
.loader {
display: inline-block;
border: 0.2em solid silver;
border-top: 0.2em solid transparent;
border-radius: 50%;
width: 0.5em;
height: 0.5em;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.footer {
display: flex;
justify-content: center;
}