Skip to content

Commit 4e959de

Browse files
authored
Merge pull request #270 from AhsanCommits/ahsancommits/feat/tindog-canine-connection-app
feat(app): add tinDog-canine-connection-app
2 parents d2c6cda + 7a1d2ba commit 4e959de

File tree

15 files changed

+532
-0
lines changed

15 files changed

+532
-0
lines changed
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# tinDog - Canine Connection Apsp
2+
3+
Welcome to tinDog, the ultimate platform for dog lovers to meet nearby dogs and potentially find their true love. Inspired by Tinder, tinDog is designed to connect people through their shared love for dogs. Swipe right to meet your furry friend or even your future life partner. Get started now and unleash the world of doggy happiness!
4+
5+
## Table of Contents
6+
7+
- [Demo](#demo)
8+
- [Technologies Used](#technologies-used)
9+
- [Features](#features)
10+
- [Screenshots](#screenshots)
11+
- [Getting Started](#getting-started)
12+
- [Contributing](#contributing)
13+
- [License](#license)
14+
15+
## Demo
16+
17+
Check out the live demo: [tinDog Live Demo](https://ahsancommits.github.io/tinDog)
18+
19+
## Technologies Used
20+
21+
This app is built using the following technologies:
22+
23+
- HTML
24+
- CSS
25+
- JavaScript
26+
- Bootstrap
27+
- Responsive Design
28+
29+
## Features
30+
31+
- User-friendly, Tinder-inspired interface for dog lovers.
32+
- Find nearby dogs and their owners.
33+
- Swipe right to like and connect with others.
34+
- Explore a world of doggy happiness.
35+
- Connect with like-minded dog enthusiasts.
36+
- Responsive design for a seamless experience on all devices.
37+
38+
## Screenshots
39+
40+
![tinDog Screenshot 1](images/1.png)
41+
42+
![tinDog Screenshot 2](images/2.png)
43+
44+
![tinDog Screenshot 3](images/3.png)
45+
46+
## Getting Started
47+
48+
Follow these steps to get a copy of the project up and running on your local machine.
49+
50+
1. Clone the repository:
51+
52+
```shell
53+
git clone https://github.com/ahsancommits/tinDog.git
54+
```
55+
56+
2. Open the project directory:
57+
58+
```shell
59+
cd tinDog
60+
```
61+
62+
3. Open the `index.html` file in your web browser to start using tinDog.
63+
64+
## Contributing
65+
66+
We welcome contributions from the community. If you have ideas for improvements or find any issues, please submit a pull request or open an issue in this repository.
67+
68+
Enjoy connecting with fellow dog lovers on tinDog! 🐶❤️
Lines changed: 196 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,196 @@
1+
body {
2+
font-family: 'Montserrat', sans-serif;
3+
text-align: center;
4+
}
5+
6+
h1, h2, h3, h4, h5, h6 {
7+
font-family: 'Montserrat', sans-serif;
8+
font-weight: 700;
9+
}
10+
11+
p {
12+
color: #8f8f8f;
13+
}
14+
15+
/* Headings */
16+
17+
.big-heading{
18+
font-family: 'Montserrat', sans-serif;
19+
font-size: 3.5rem;
20+
font-weight: 900;
21+
line-height: 1.5;
22+
}
23+
24+
.section-heading{
25+
font-size: 3rem;
26+
line-height: 1.5;
27+
}
28+
29+
30+
/* Containers */
31+
32+
.container-fluid {
33+
padding: 7% 15%;
34+
}
35+
36+
/* Sections */
37+
38+
.colored-section {
39+
background-color: #ff4c68;
40+
color: #fff;
41+
}
42+
43+
.white-section {
44+
background-color: #fff;
45+
}
46+
47+
/* Navigation Bar */
48+
.navbar {
49+
padding: 0 0 4.5rem;
50+
}
51+
52+
.navbar-brand {
53+
font-family: 'Ubuntu', sans-serif;
54+
font-size: 2.5rem;
55+
font-weight: bold;
56+
}
57+
58+
.nav-item {
59+
padding: 0 18px;
60+
}
61+
62+
.nav-link {
63+
font-size: 1.2rem;
64+
font-family: 'Montserrat', sans-serif;
65+
font-weight: 300;
66+
}
67+
68+
/* Title Section */
69+
70+
#title .container-fluid{
71+
padding: 3% 15% 7%;
72+
text-align: left;
73+
}
74+
75+
/* Download Buttons */
76+
.download-button {
77+
margin: 5% 3% 5% 0;
78+
}
79+
80+
/* Title Image */
81+
.title-image {
82+
height: 67%;
83+
transform: rotate(25deg);
84+
position: absolute;
85+
right: 25%;
86+
}
87+
88+
/* Features Section*/
89+
#features {
90+
position: relative;
91+
}
92+
93+
.feature-title {
94+
font-size: 1.5rem;
95+
}
96+
97+
.feature-box {
98+
padding: 2.8%;
99+
}
100+
101+
.icon {
102+
color: #ef8172;
103+
margin-bottom: 1rem;
104+
}
105+
106+
.icon:hover {
107+
color: #ff4c68;
108+
}
109+
110+
/* Testimonials Section */
111+
#testimonials {
112+
background-color: #ef8172;
113+
}
114+
115+
.testimonial-text {
116+
font-size: 3rem;
117+
line-height: 1.5;
118+
}
119+
120+
.testimonial-image {
121+
width: 10%;
122+
border-radius: 100%;
123+
margin: 20px;
124+
}
125+
126+
127+
/* Press Section */
128+
#press {
129+
background-color: #ef8172;
130+
padding-bottom: 3%;
131+
}
132+
133+
.press-logo {
134+
width: 15%;
135+
margin: 20px 20px 50px;
136+
}
137+
138+
/* Pricing Section */
139+
#pricing {
140+
padding: 100px;
141+
}
142+
143+
.price-title {
144+
margin-top: 0.5rem;
145+
font-size: 1.5rem;
146+
}
147+
148+
.price-text{
149+
font-size: 3rem;
150+
}
151+
152+
.pricing-column {
153+
padding: 3% 2%;
154+
}
155+
156+
.pricing-icon {
157+
display: flex;
158+
align-items: center;
159+
}
160+
161+
.pricing-icon i {
162+
color: #ef8172;
163+
}
164+
165+
.pricing-icon i:hover {
166+
color: #ff4c68;
167+
}
168+
169+
.pricing-icon p {
170+
margin: 0 10px;
171+
}
172+
173+
174+
/* Footer Section */
175+
176+
.social-icon{
177+
margin: 20px 10px;
178+
}
179+
180+
181+
/* Responsive */
182+
@media (max-width: 1028px) {
183+
.title-main{
184+
text-align: center;
185+
}
186+
187+
188+
.nav-item {
189+
padding: 0;
190+
}
191+
192+
.title-image{
193+
position: static;
194+
transform: rotate(0);
195+
}
196+
}
169 KB
Loading
105 KB
Loading
106 KB
Loading
13.7 KB
Loading
39 KB
Loading
23 KB
Loading
234 KB
Loading
232 KB
Loading

0 commit comments

Comments
 (0)