Skip to content

Commit 171907c

Browse files
committed
feat: ✨ home redesign, extensions page
1 parent 603b5d1 commit 171907c

32 files changed

+4524
-324
lines changed

web-app/src/assets/app.css

Lines changed: 86 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
margin: auto;
1010
}
1111

12+
code {
13+
color: #bc2f13;
14+
}
15+
1216
::placeholder {
1317
/* Chrome, Firefox, Opera, Safari 10.1+ */
1418
color: rgb(96, 51, 111);
@@ -178,6 +182,22 @@
178182
align-items: center;
179183
}
180184

185+
.p-1 {
186+
padding: 1em !important;
187+
}
188+
.p-2 {
189+
padding: 2em !important;
190+
}
191+
.p-3 {
192+
padding: 3em !important;
193+
}
194+
.p-4 {
195+
padding: 4em !important;
196+
}
197+
.mr-1 {
198+
margin-right: 1em !important;
199+
}
200+
181201
.noBorder {
182202
border: none !important;
183203
}
@@ -186,20 +206,77 @@
186206
padding: 20px !important;
187207
}
188208

209+
.border-bottom {
210+
border-bottom: var(--blue-light) 2px solid;
211+
}
212+
213+
.caps {
214+
text-transform: uppercase;
215+
}
216+
217+
.api-back {
218+
--s: 100px; /* control the size */
219+
220+
--c: #343434; /* back color */
221+
background:
222+
conic-gradient(at 80% 80%, var(--c) 75%, #0000 0),
223+
linear-gradient(135deg, var(--c) calc(40% / 3), #0000 0 calc(200% / 3), var(--c) 0),
224+
conic-gradient(
225+
from 45deg at calc(160% / 3) calc(80% / 3),
226+
#0008 135deg,
227+
#0000 0 225deg,
228+
#0004 0
229+
)
230+
#272727; /* cube color */
231+
background-size: var(--s) var(--s);
232+
}
233+
234+
.blue-black {
235+
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#244466+0,020102+100 */
236+
background: linear-gradient(
237+
to bottom,
238+
rgba(36, 68, 102, 1) 0%,
239+
rgba(2, 1, 2, 1) 100%
240+
); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
241+
}
242+
189243
.docBack {
190244
background-image: url('./img/docBack.png');
191245
background-position: top right;
192246
background-size: cover;
193247
background-repeat: no-repeat;
194248
}
195249

250+
.v-lines {
251+
background-image: url('./img/vlines.svg');
252+
background-position: bottom center;
253+
background-size: cover;
254+
background-repeat: no-repeat;
255+
}
256+
257+
.extensions {
258+
background-image: url('./img/extensions.png');
259+
background-position: right;
260+
background-size: 600px;
261+
background-repeat: no-repeat;
262+
}
263+
196264
.cloudsBack {
197265
background-image: url('./img/clouds.svg');
198266
background-position: bottom center;
199267
background-size: cover;
200268
background-repeat: no-repeat;
201269
}
202270

271+
.mat-black {
272+
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#45484d+0,000000+100;Black+3D+%231 */
273+
background: linear-gradient(
274+
to bottom,
275+
#45484d 0%,
276+
#000000 100%
277+
); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
278+
}
279+
203280
.margin20 {
204281
margin: 20px !important;
205282
}
@@ -305,11 +382,15 @@ a.middle-indicator-text {
305382
}
306383

307384
.mainBackgroundParticle {
308-
background: #273238 !important;
309-
background: -moz-linear-gradient(top, #212121 0, rgba(56, 131, 190, 1) 100%) !important;
310-
background: -webkit-linear-gradient(top, #212121 0, rgba(56, 131, 190, 1) 100%) !important;
311-
background: linear-gradient(to bottom, #212121 0, rgba(56, 131, 190, 1) 100%) !important;
312-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#273238', endColorstr='#3883be', GradientType=0) !important;
385+
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3080c1+0,fcfcfc+100 */
386+
background: linear-gradient(
387+
to bottom,
388+
#3080c1 0%,
389+
#fcfcfc 100%
390+
); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
391+
392+
padding-top: 100px;
393+
padding-bottom: 100px;
313394
}
314395

315396
.uiBack {
@@ -411,14 +492,6 @@ a.middle-indicator-text {
411492
transition: 0.7s;
412493
}
413494

414-
h1,
415-
h2,
416-
h3,
417-
h4,
418-
h5 {
419-
font-weight: 100;
420-
}
421-
422495
@media only screen and (max-width: 500px) {
423496
.hideOnSmall {
424497
display: none;
81 KB
Loading
26.3 KB
Loading
31.4 KB
Loading
25.5 KB
Loading
31.4 KB
Loading

0 commit comments

Comments
 (0)