Skip to content

Commit 41eb46a

Browse files
authored
Merge pull request #32 from Hyper-Unearthing/feat/add-register-from
Feat/add register from
2 parents 2dcf5b9 + 0a0a195 commit 41eb46a

5 files changed

Lines changed: 283 additions & 33 deletions

File tree

assets/components/colomnar-layout.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@
55
padding: var(--full-page-section-padding, 100px 140px 100px 140px);
66
}
77

8+
.colomnar-layout > * {
9+
flex: 1;
10+
}
11+
812
.colomnar-layout h2 {
913
margin-bottom: var(--benefits-section-heading-margin, 48px);
1014
}
1115

12-
.colomnar-layout img {
16+
.colomnar-layout img:not(button img, a img) {
1317
margin-bottom: var(--benefits-section-image-margin, 64px);
1418
}
1519

assets/images/angle.svg

Lines changed: 13 additions & 0 deletions
Loading

assets/main.css

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
@import url("pasta/typography.css");
55
@import url("pasta/navigation.css");
66
@import url("pasta/button.css");
7+
@import url("pasta/form.css");
78
@import url("pasta/stripes.css");
89
@import url("components/arrows.css");
910
@import url("components/marketing-hero.css");
@@ -41,10 +42,14 @@ body {
4142
}
4243

4344
.old-way,
44-
.colomnar-layout {
45+
.benefits {
4546
--section-background-color: #291d50;
4647
}
4748

49+
.getting-started {
50+
background-color: var(--royal-900);
51+
}
52+
4853
.new-way {
4954
--section-background-color: var(--royal-900);
5055
}
@@ -67,6 +72,18 @@ p {
6772
font: var(--p-font);
6873
}
6974

75+
.footer {
76+
display: flex;
77+
justify-content: center;
78+
background-color: var(--page-background);
79+
padding: var(--footer-padding) 0;
80+
font-size: 1rem;
81+
}
82+
83+
.footer span {
84+
color: var(--footer-font-color);
85+
}
86+
7087
@media (max-width: 980px) {
7188
:root {
7289
--hero-gutter: 32px;

assets/pasta/form.css

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
form {
2+
display: flex;
3+
flex-direction: column;
4+
gap: 32px;
5+
}
6+
7+
.input-component {
8+
display: flex;
9+
flex-direction: column;
10+
gap: 16px;
11+
}
12+
13+
/* Because form is flex, button needs to maintain content width */
14+
.button.cta {
15+
width: fit-content;
16+
}
17+
18+
.input-component--label {
19+
display: flex;
20+
justify-content: space-between;
21+
}
22+
23+
.input-component--label label {
24+
font-weight: 700;
25+
}
26+
27+
fieldset {
28+
display: flex;
29+
gap: 16px;
30+
}
31+
32+
.input-component--input {
33+
border: transparent;
34+
border-radius: 4px;
35+
padding: 16px;
36+
font-size: 18px;
37+
line-height: 24px;
38+
width: 100%;
39+
flex: 1;
40+
}
41+
42+
.input-component,
43+
fieldset {
44+
width: 100%;
45+
max-width: 500px;
46+
}
47+
48+
.form-field,
49+
.form-fieldset {
50+
display: flex;
51+
align-items: flex-end;
52+
gap: 16px;
53+
}
54+
55+
.dashboard-form .input-component--input {
56+
/* padding is broken on firefox this is following the power-select padding */
57+
padding: 0 8px;
58+
background: var(--input-background-color);
59+
height: 40px;
60+
display: flex;
61+
align-items: center;
62+
color: white;
63+
border: 1px solid var(--input-border-color);
64+
}
65+
66+
/* hack to change the color of date picker icon */
67+
::-webkit-calendar-picker-indicator {
68+
filter: invert(1);
69+
}

0 commit comments

Comments
 (0)