Skip to content

Commit 3e3f37e

Browse files
committed
Desktop page
1 parent 9d7598d commit 3e3f37e

File tree

4 files changed

+243
-143
lines changed

4 files changed

+243
-143
lines changed

src/Client/css/base.css

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Alef:wght@400;700&display=swap');
2+
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@500&display=swap');
3+
14
:root {
25
--baby-powder: #FBFEFB;
36
--dark-text-color: #1B1F3B;
47
--heading-font: "Alef", serif;
8+
--text-font: "Inter", sans-serif;
59
--merochat-red: #DB5A5D;
610
}
711

@@ -13,7 +17,7 @@ html {
1317
body {
1418
margin: 0;
1519
min-height: 100%;
16-
font-family: Verdana, sans-serif;
20+
font-family: var(--text-font);
1721
font-size: 18px;
1822
background: #262626;
1923
line-height: 1.51857143;

src/Client/css/landing.css

+156-18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
@import url('https://fonts.googleapis.com/css2?family=Alef:wght@400;700&display=swap');
2-
31
.landing {
42
position: relative;
53
display: grid;
@@ -10,30 +8,30 @@
108
color: var(--dark-text-color);
119
}
1210

13-
/* . {
14-
width: 100%;
15-
max-width: 1000px;
16-
} */
17-
1811
svg {
1912
stroke: none;
2013
cursor: initial;
2114
}
2215

16+
.header {
17+
margin-right: 90px;
18+
}
19+
2320
.menu-merochat {
2421
display: flex;
2522
flex-direction: column;
26-
margin-left:40px
23+
margin-left: 40px
2724
}
2825

2926
.menu {
3027
display: flex;
28+
align-items: center;
3129
align-self: flex-end;
30+
3231
}
3332

3433
.menu a {
35-
font-weight: 600;
36-
margin-left:20px;
34+
margin-left: 20px;
3735
color: var(--dark-text-color);
3836
}
3937

@@ -49,24 +47,29 @@ svg {
4947
}
5048

5149
.theme-switcher {
52-
margin-left:20px
50+
margin-left: 20px
5351
}
5452

5553
.merochat {
56-
margin-top:auto;
54+
margin-top: auto;
5755
}
5856

5957
h1 {
6058
font-family: var(--heading-font);
6159
}
6260

63-
.name {
61+
.name,
62+
.name-again {
6463
font-size: 4em;
65-
color: var(--merochat-red);
66-
margin:0;
64+
65+
margin: 0;
6766
padding: 0;
6867
}
6968

69+
.name {
70+
color: var(--merochat-red);
71+
}
72+
7073
.tagline {
7174
background-color: var(--merochat-red);
7275
padding: 0px 15px;
@@ -76,22 +79,157 @@ h1 {
7679
}
7780

7881
.subtagline {
79-
padding-top:10px;
82+
padding-top: 10px;
8083
font-weight: 600;
81-
font-size:0.8em;
84+
font-size: 0.8em;
85+
}
86+
87+
.shadow {
88+
box-shadow: 0px 8px 6px rgba(0, 0, 0, 0.2);
8289
}
8390

8491
.sign-up {
8592
background-color: #EFE5DC;
8693
display: flex;
8794
align-items: center;
8895
justify-content: center;
89-
padding: 30px 0px;
96+
padding: 80px 0px;
9097
width: 100%;
9198
}
9299

93100
.sign-up-form {
94101
padding-left: 50px;
95102
display: flex;
96103
flex-direction: column;
104+
padding-right: 90px;
105+
}
106+
107+
.sign-up-form input {
108+
font-family: var(--dark-text-color);
109+
padding: 10px;
110+
width: 500px;
111+
border-radius: 10px;
112+
border: 1px solid var(--merochat-red);
113+
margin: 8px 0;
114+
}
115+
116+
.sign-up-form input[type=text] {
117+
color: var(--merochat-red);
118+
background-color: var(--baby-powder);
119+
}
120+
121+
.sign-up-form input[type=button] {
122+
color: var(--baby-powder);
123+
background-color: var(--merochat-red);
124+
font-weight: bold;
125+
outline: 0;
126+
padding: 10px 0;
127+
width: 100%;
128+
}
129+
130+
.sign-up-form a {
131+
color: var(--merochat-red);
132+
align-self: flex-end;
133+
font-weight: bold;
134+
}
135+
136+
.features {
137+
margin-top: 50px;
138+
}
139+
140+
.features,
141+
.features-again {
142+
display: flex;
143+
}
144+
145+
.features svg {
146+
height: 250px;
147+
width: 250px;
148+
}
149+
150+
.features h1 {
151+
color: #4BC9AC
152+
}
153+
154+
.feature-blurb {
155+
display: flex;
156+
align-items: center;
157+
}
158+
159+
.feature-blurb:first-child {
160+
margin-right: 100px;
161+
}
162+
163+
.feature-blurb-left {
164+
margin: 0 20px;
165+
}
166+
167+
.sign-up-again {
168+
margin: 80px 0;
169+
padding: 50px 0;
170+
display: flex;
171+
flex-direction: column;
172+
width: 100%;
173+
align-items: center;
174+
background-color: var(--merochat-red);
175+
color: var(--baby-powder);
176+
}
177+
178+
.sign-up-again svg {
179+
width: 150px;
180+
}
181+
182+
.try-it {
183+
background-color: var(--baby-powder);
184+
color: var(--merochat-red);
185+
border-radius: 10px;
186+
padding: 7px 150px;
187+
margin-top: 15px;
188+
margin-left: 180px;
189+
font-weight: bold;
190+
display: inline-block;
191+
}
192+
193+
.logo-name {
194+
display: flex;
195+
}
196+
197+
.subtagline-again {
198+
font-size: 1.2em;
199+
}
200+
201+
.tagline-name {
202+
margin-left: 20px;
203+
}
204+
205+
.green-call {
206+
color: #42858C;
207+
font-weight: bold;
208+
font-size: 1.2em;
209+
}
210+
211+
.after-green-call {
212+
margin-top: 20px;
213+
}
214+
215+
.features-again svg {
216+
height: 400px;
217+
width: 400px;
218+
}
219+
220+
.features-again {
221+
margin-top: 20px;
222+
}
223+
224+
.footer {
225+
margin-top: 50px;
226+
margin-bottom: 25px;
227+
display: flex;
228+
justify-content: space-between;
229+
}
230+
231+
.footer a {
232+
padding: 0 20px;
233+
font-weight: bold;
234+
color: var(--dark-text-color);
97235
}

0 commit comments

Comments
 (0)