Project

General

Profile

1
/* Landing title section*/
2
.title-section h1 {
3
  font-size: 28px;
4
  font-weight: 400;
5
}
6

    
7
.title-section .under-curation {
8
  color: var(--portal-main-color);
9
  opacity: 0.8;
10
}
11

    
12
.uk-modal .title-section h1, .uk-modal .title-section h2, .feedback-page .title-section h1 {
13
  font-size: 18px;
14
  font-weight: 400;
15
}
16

    
17
/* Landing Main content*/
18

    
19
input[name="code"] {
20
  font-family: Consolas, monaco, monospace;
21
  font-size: .875rem;
22
  color: #222080;
23
  white-space: nowrap;
24
  background: #f9f9f9;
25
  border: 1px solid #ededed;
26
  border-radius: 1px;
27
}
28

    
29
.landing ul.basic-info li {
30
  margin-bottom: 6px;
31
}
32
/* Landing Related Organizations*/
33
.landing ul.organizations > li {
34
  border: 1px solid #E8E8E8;
35
  border-radius: 2px;
36
  color: #A4A4A4;
37
  padding: 10px;
38
  width: 100%;
39
}
40

    
41
.landing ul.organizations > li > a {
42
  color: #000000;
43
  font-weight: 700;
44
}
45

    
46
.landing ul.organizations > li > a:hover {
47
  text-decoration: underline;
48
}
49

    
50
/* Landing Download from section*/
51
.landing .download-from > * {
52
  padding: 10px;
53
  color: #A4A4A4;
54
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
55
}
56

    
57
.landing .download-from > *:last-child {
58
  border-bottom: none;
59
}
60

    
61
.landing .download-from .title {
62
  color: black;
63
  word-wrap: break-word;
64
  font-weight: 700;
65
  text-decoration: underline;
66
}
67

    
68
.landing .download-from a {
69
  color: #A4A4A4;
70
}
71

    
72
.landing .download-from a:hover {
73
  color: #578ede;
74
}
75

    
76
/* Landing Relations section*/
77
.landing .simple-buttons > div {
78
  font-size: 16px;
79
  padding: 15px 30px;
80
  border-radius: 4px;
81
  background-color: white;
82
  border: 1px solid #DEDEDE;
83
}
84

    
85
.landing .simple-buttons > div:hover {
86
  background-color: #F0F0F0;
87
  box-shadow: 0 1px 6px #00000033;
88
}
89

    
90
.landing .advanced-buttons > div > div {
91
  border-radius: 4px;
92
  font-size: 16px;
93
  border: 1px solid #DEDEDE;
94
}
95

    
96
.landing .advanced-buttons > div > div:hover {
97
  box-shadow: 0 1px 6px #00000033;
98
}
99

    
100
.landing .advanced-buttons > div > div .header {
101
  padding: 15px;
102
  min-height: 60px;
103
  color: var(--portal-main-color);
104
  text-overflow: ellipsis;
105
}
106

    
107
.landing .advanced-buttons > div > div .icon {
108
  z-index: 1;
109
  color: var(--portal-main-color);
110
}
111

    
112
.landing .advanced-buttons > div > div .icon > svg {
113
  width: 40px;
114
  height: 40px;
115
}
116

    
117
.landing .advanced-buttons > div > div .footer {
118
  padding: 15px;
119
  min-height: 60px;
120
  background-color: #F0F0F0;
121
  font-size: 24px;
122
  color: #666;
123
}
124

    
125
.landing .advanced-buttons > div > div:hover .footer {
126
  color: black;
127
}
128

    
129
.landing .left-border {
130
  border-left: 3px solid #EBEBEB;
131
  padding-left: 20px;
132
}
133

    
134
.landing .sideInfoTitle {
135
  font-weight: normal !important;
136
  border-radius: 4px;
137
  background-color: #F0F0F0;
138
  color: #666;
139
  padding: 12px;
140
}
141

    
142
/* Progress */
143
.portal-progress.uk-progress, .green-progress.uk-progress {
144
  background-color: #F0F0F0;
145
  height: 10px;
146
}
147

    
148
/*firefox*/
149
.portal-progress.uk-progress::-moz-progress-bar {
150
  background-color: var(--portal-main-color);
151
}
152

    
153
.green-progress.uk-progress::-moz-progress-bar {
154
  background-color: #9ADC83 !important;
155
}
156

    
157
/*chrome*/
158
.portal-progress.uk-progress::-webkit-progress-value {
159
  background-color: var(--portal-main-color);
160
}
161

    
162
.green-progress.uk-progress::-webkit-progress-value {
163
  background-color: #9ADC83 !important;
164
}
165

    
166
/*internet explore & edge*/
167
.portal-progress.uk-progress::-ms-fill {
168
  background-color: var(--portal-main-color);
169
}
170

    
171
.green-progress.uk-progress::-ms-fill {
172
  background-color: #9ADC83 !important;
173
}
174

    
175
/* Bioentities */
176
.bioentities-buttons > div > * {
177
  border-radius: 4px;
178
  font-size: 16px;
179
  font-weight: 700;
180
  border: 1px solid #DEDEDE;
181
  padding: 40px 0;
182
  width: 100%;
183
  display: inline-block;
184
  text-align: center;
185
  text-transform: uppercase;
186
  color: #666;
187
}
188

    
189
.bioentities-buttons > div > a:hover {
190
  background-color: #F0F0F0;
191
  color: black;
192
  box-shadow: 0 1px 6px #00000033;
193
}
194

    
195
/* Feedback page*/
196
.feedback-page .title-section {
197
  background-image: linear-gradient(to right, var(--portal-main-color), var(--portal-dark-color));
198
  padding: 15px 0;
199
  border-radius: 4px;
200
}
201

    
202
.feedback-page .uk-text-muted {
203
  color: rgba(255, 255, 255, 0.7) !important;
204
}
205

    
206
.feedback-page .form {
207
  margin-top: 5px;
208
  border-radius: 4px;
209
  border: 1px solid rgba(0, 0, 0, 0.2);
210
  padding: 25px 25px 15px;
211
}
212

    
213
.feedback-sent {
214
  border-radius: 4px;
215
  background-color: var(--portal-main-color);
216
  color: white;
217
  padding: 50px 100px;
218
  text-align: center;
219
}
220

    
221
.feedback-sent * {
222
  color: white;
223
}
224

    
225
/* B2note*/
226
.b2note ul {
227
  color: #1D3454;
228
}
229

    
230
.b2note button {
231
  border-radius: 500px;
232
  border: 1px solid #DEDEDE;
233
  line-height: 17px;
234
  background-color: #DEDEDE;
235
  color: #515151;
236
  padding: 5px 15px;
237
  text-transform: uppercase;
238
  font-size: 12px;
239
}
240

    
241
.b2note button:not(.disabled):hover {
242
  box-shadow: 0 1px 6px #00000033;
243
}
244

    
245
.b2note button.disabled {
246
  cursor: unset;
247
}
248

    
249
.b2note button:focus {
250
  outline-color: transparent;
251
}
252

    
253
.b2note ul > li {
254
  word-wrap: break-word;
255
}
256

    
257
.b2note ul > li > .type {
258
  border-radius: 4px;
259
  color: white;
260
  font-size: 12px;
261
  padding: 1px 9px;
262
  text-transform: uppercase;
263
  width: 80px;
264
  text-align: center;
265
}
266

    
267
.b2note ul > li > .type.semantic {
268
  background-color: #22356E;
269
}
270

    
271
.b2note ul > li > .type.keyword {
272
  background-color: #596FB5;
273
}
274

    
275
.b2note ul > li > .type.comment {
276
  background-color: #AFB3D4;
277
}
278

    
279
svg #statistics-bars {
280
  fill: var(--portal-main-color);
281
}
282

    
283
.landing-modal-header {
284
  background: transparent linear-gradient(35deg, #FFFFFF 0%, #F0F0F0 100%)  no-repeat padding-box;
285
  padding: 20px 40px;
286
}
287

    
288
.landing-modal .modal-title {
289
  font-weight: bold;
290
  font-size: 22px;
291
  margin: 0;
292
}
293

    
294
.square-button {
295
  border-radius: 0;
296
}
297

    
298
.title-grey-background {
299
  background: transparent linear-gradient(17deg, #FFFFFF 0%, #F0F0F0 100%) no-repeat padding-box;
300
  padding: 15px 0;
301
  border-radius: 4px;
302
}
(8-8/19)