-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
258 lines (197 loc) · 3.74 KB
/
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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
/*
styles tried
https://coolors.co/d8f3dc-b7e4c7-95d5b2-74c69d-52b788-40916c-2d6a4f-1b4332-081c15
Light to Dark (green): D8F3DC, B7E4C7, 95D5B2, 74C69D, 52B788, 40916C, 2D6A4F, 1B4332, 081C15
https://coolors.co/012a4a-013a63-01497c-014f86-2a6f97-2c7da0-468faf-61a5c2-89c2d9-a9d6e5
Light to Dark (blue): A9D6E5, 89C2D9, 61A5C2, 468FAF, 2C7DA0, 2A6F97, 014F86, 01497C, 013A63, 012A4A
Based on https://coolors.co/6b9080-a4c3b2-cce3de-eaf4f4-f6fff8
Light to dark grey green: F6FFF8, EAF4F4, CCE3DE, A4C3B2, 2D6A4F, 6B9080, 3D5249
00a05b, ebf9f2
*/
body {
background: #ffffff;
font-family: Arial, Helvetica, sans-serif;
}
.main-app{
margin:10px;
}
/* was #3D5249 - then docusaurus uses #2e8555*/
.header{
background-color: #2e8555;
color: white;
display: flex;
height: 2.4em;
}
div.header div{
margin-top: 1em;
}
.footer{
text-align:center;
}
/* Conversion Types List */
.conversionTabs{
display: flex;
}
.type-select{
display: block;
padding: .5rem 1rem;
}
.type-select:hover{
border-style: solid;
border-width: 1px 1px 0px 1px;
border-color: #61A5C2 #61A5C2 #A9D6E5;
margin: -1px -1px 0px -1px;
}
.active-type{
border-style: solid;
border-width: 1px 1px 0px 1px;
border-color: #014F86 #014F86 #A9D6E5;
margin: -1px -1px 0px -1px;
}
.conversionTypesList{
border-bottom: 1px solid #A9D6E5;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
a.type-select-action {
text-decoration: none;
color:black;
}
/* file drag and dropping */
.dragdropzone.is-dragover {
background-color: grey;
}
.dragdropzone{
background-color: rgb(209, 243, 224);
}
/* add set of buttons to the right of the tabs */
/*.conversionTypes{
}*/
.rightbuttons{
display: flex;
margin-left: auto;
margin-right: auto;
align-items: flex-end;
}
/*.rightbuttons button{
margin-top: 2em;
}*/
/* Instructions */
.instructions{
padding:10px;
color: rgb(0, 0, 0);
}
details[open]{
background-color: white;
border-style: dashed;
color: black;
}
details[open] ul{
margin-right: 10px;
}
details[open] ul li:last-child{
padding-bottom: 10px;
}
.appheading{
text-align: center;
margin: 0px;
}
button{
background-color: #2D6A4F;
color: white
}
/* The text conversion box */
.textrepresentation{
height: 200px;
width:100%;
white-space: pre-wrap;
background-color: #ebf9f2;
resize: vertical;
}
.testDataDefn{
height: 10em;
width:95%;
white-space: pre-wrap;
resize: vertical;
}
/*
Custom header styles for default items
*/
.headerWrapper{
width:100%;
}
.customHeaderTop{
display: flex;
}
.customSort{
display: flex;
flex: 0;
}
.customHeaderMenuButton {
flex:0;
margin: 0 3px 0 3px;
}
.customHeaderLabel{
flex:3;
text-align: center;
}
.customSortDownLabel {
margin: 0 0 0 3px;
}
.customSortUpLabel {
margin: 0;
}
.customSortRemoveLabel {
margin: 0 0 0 3px;
font-size: 11px;
}
.active {
color: #00a05b;
}
/* The grid heading control buttons */
.headerbuttons{
text-align: center;
color: #1e4a01;
}
/* Docs */
.bodycontent{
max-width: 1200px;
margin: auto;
}
.header .pageheading{
font-size: 1em;
display: inline;
padding-left: 1em;
}
.header .pageheading a{
color: white;
text-decoration: none;
}
.header .mainmenu{
display: inline;
padding-left: 2em;
}
.header .mainmenu a{
text-decoration: none;
}
.header .mainmenu a{
color: white;
}
.mainmenu a:hover, .header .pageheading a:hover{
color: #000000;
}
/* Styling for inline application help */
/* use in a div or span to avoid having a border, which would happen on img if no src attribute present */
.helpicon{
background: url("/images/circle-question-solid.svg");
width: 1em;
height: 1em;
display: inline-block;
}
.helplink{
color: #afdfff;
}