Skip to content

Commit 67194f3

Browse files
Initial commit
0 parents  commit 67194f3

17 files changed

+483
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# PotatoStore
2+
potato store = fake?

app.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
const express = require('express');
2+
const app = express();
3+
const dir = __dirname
4+
5+
app.use(express.static("public"))
6+
7+
app.get("/", function(req, res){
8+
res.sendFile(dir + "/index.html")
9+
})
10+
11+
12+
13+
14+
15+
16+
17+
18+
19+
20+
21+
22+
23+
24+
app.listen(3000, function(){
25+
console.log("Teaching is math in universe 3000.");
26+
})

css/styles.css

Lines changed: 185 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,185 @@
1+
h1, h2, h3, h4, h5, h6 {
2+
font-weight: 700;
3+
}
4+
5+
p {
6+
color: #8f8f8f;
7+
}
8+
9+
body {
10+
font-family: Montserrat, serif;
11+
scroll-behavior: smooth;
12+
text-align: center;
13+
}
14+
15+
a {
16+
text-decoration: none;
17+
}
18+
19+
/* headings */
20+
21+
.section-heading {
22+
font-size: 3rem;
23+
line-height: 1.5;
24+
}
25+
26+
.big-heading {
27+
font-family: Montserrat, serif;
28+
font-size: 3.5rem;
29+
line-height: 1.5;
30+
font-weight: 900;
31+
}
32+
33+
/* containers */
34+
35+
.container-fluid {
36+
padding: 7% 15%;
37+
}
38+
39+
/* section */
40+
41+
.colored-section {
42+
background-color: #34BE82;
43+
color: white;
44+
}
45+
46+
.white-section {
47+
background-color: #fff;
48+
}
49+
50+
/* navbar */
51+
.navbar-brand {
52+
font-family: Ubuntu;
53+
font-size: 2.5rem;
54+
}
55+
56+
.navbar {
57+
padding: 0 0 4.5rem;
58+
}
59+
60+
.nav-item {
61+
padding: 0 18px;
62+
}
63+
64+
.nav-link {
65+
font-weight: 300;
66+
font-size: 1.2rem;
67+
}
68+
69+
/* title */
70+
71+
#title .container-fluid {
72+
padding: 3% 15% 7%;
73+
text-align: left;
74+
}
75+
76+
/* buttons */
77+
.download-btn {
78+
margin: 5% 3% 5% 0;
79+
}
80+
81+
/* title image */
82+
.titleimg {
83+
width: 90%;
84+
}
85+
86+
/* Features section */
87+
88+
.feature-title {
89+
font-size: 1.5rem;
90+
}
91+
92+
.feature-box {
93+
padding: 5%;
94+
}
95+
96+
.icon {
97+
color: #BCD694;
98+
margin-bottom: 1rem;
99+
}
100+
101+
.icon:hover {
102+
color: #94D699;
103+
}
104+
105+
/* Testimonials */
106+
#testimonials {
107+
background-color: #BCD694;
108+
}
109+
110+
.testimonial-text {
111+
font-size: 3rem;
112+
line-height: 1.5;
113+
}
114+
115+
.testimonial-img {
116+
width: 10%;
117+
border-radius: 100%;
118+
margin: 20px;
119+
}
120+
121+
#press {
122+
background-color: #BCD694;
123+
padding-bottom: 3%;
124+
}
125+
126+
.press-logo {
127+
width: 15%;
128+
margin: 20px 20px 50px;
129+
}
130+
131+
/* pricing */
132+
#pricing {
133+
padding: 100px;
134+
line-height: 1.5;
135+
}
136+
137+
.pricing-descrption {
138+
margin-top: 50px;
139+
}
140+
141+
.price-text {
142+
font-size: 3rem;
143+
line-height: 1.5;
144+
}
145+
146+
.pricing-col {
147+
padding: 3% 2%;
148+
}
149+
150+
.pricing-body {
151+
padding: 2rem;
152+
}
153+
154+
/* cta */
155+
156+
@media (max-width: 1028px) {
157+
.titleimg {
158+
width: 50%;
159+
}
160+
161+
#title {
162+
text-align: center;
163+
}
164+
}
165+
166+
/* footer */
167+
168+
.credits {
169+
font-size: 7px;
170+
}
171+
172+
.social-icon {
173+
margin: 20px 10px;
174+
}
175+
176+
/* Colors
177+
#ABF7C7
178+
#94D699
179+
#BFEDAF
180+
#BCD694
181+
#F4F7AB
182+
183+
#FBD148
184+
#FFF76A
185+
*/

images/Beautyful.png

27.6 KB
Loading

images/TechCrunch.png

10.7 KB
Loading

images/bizinsider.png

13.7 KB
Loading

images/dog-img.jpg

23 KB
Loading

images/fast-delivery.png

18.6 KB
Loading

images/iphone6.png

232 KB
Loading

images/lady-img.jpg

26.2 KB
Loading

images/mashable.png

17 KB
Loading

images/tnw.png

24.1 KB
Loading

0 commit comments

Comments
 (0)