Skip to content

Commit 1fd9c9f

Browse files
Add files via upload
1 parent 2861729 commit 1fd9c9f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+5208
-0
lines changed
Lines changed: 181 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,181 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');
2+
@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@200;300;400;500;600&display=swap');
3+
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap');
4+
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
5+
:root {
6+
--soft-light1: #585858;
7+
--soft-light2: #bbbbbb;
8+
--max-width: 1200px;
9+
}
10+
11+
* {
12+
font-family: 'Montserrat', sans-serif;
13+
margin: 0;
14+
padding: 0;
15+
box-sizing: border-box;
16+
outline: none;
17+
}
18+
19+
body {
20+
background: #bababa;
21+
color: rgb(4, 3, 3);
22+
overflow-x: hidden;
23+
}
24+
25+
.main-header {
26+
background: linear-gradient(90deg, red, blue);
27+
background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
28+
background-image: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
29+
}
30+
31+
.web-header {
32+
display: flex;
33+
flex-direction: row;
34+
justify-content: flex-start;
35+
align-items: center;
36+
padding: 1rem;
37+
column-gap: 1rem;
38+
39+
}
40+
.link2{
41+
display: inline-block;
42+
}
43+
.myLogo {
44+
width: 2.5rem;
45+
height: 2.5rem;
46+
object-fit: contain;
47+
text-align: center;
48+
}
49+
50+
.web-name {
51+
font-family: 'Satisfy', cursive;
52+
font-weight: 400;
53+
}
54+
55+
.nav-buttons {
56+
57+
padding: 0.55rem;
58+
background-color: inherit;
59+
border: none;
60+
outline: none;
61+
cursor: pointer;
62+
color: #fff;
63+
display: flex;
64+
flex-direction: column;
65+
justify-content: center;
66+
align-items: center;
67+
row-gap: 0.75rem;
68+
font-size: 0.8rem;
69+
width: 100%;
70+
}
71+
72+
.nav-icons {
73+
background-color: inherit;
74+
width: 1.6rem;
75+
height: 1.6rem;
76+
object-fit: cover;
77+
pointer-events: none
78+
}
79+
80+
.nav-name {
81+
pointer-events: none;
82+
font-weight: bolder;
83+
text-align: center;
84+
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
85+
-webkit-background-clip: text;
86+
-webkit-text-fill-color: transparent;
87+
}
88+
89+
90+
/* .selection-menu {
91+
display: flex;
92+
flex-direction: row;
93+
justify-content: space-evenly;
94+
align-items: center;
95+
list-style: none;
96+
padding: 0.5rem;
97+
column-gap: 0.5rem;
98+
max-width: var(--max-width);
99+
margin: auto;
100+
} */
101+
102+
.nav-section {
103+
background-color: rgb(232, 232, 232);
104+
display: flex;
105+
flex-direction: row;
106+
107+
align-items: center;
108+
overflow-x: scroll;
109+
list-style: none;
110+
padding: 1rem 3rem;
111+
grid-column-gap: 0.9rem;
112+
column-gap: 0.9rem;
113+
114+
115+
margin: auto;
116+
border-bottom: 1px solid #b13d3d;
117+
}
118+
.nav-section::-webkit-scrollbar {
119+
120+
height: 5px;
121+
}
122+
123+
.active-navigation {
124+
display: flex;
125+
justify-content: center;
126+
align-items: center;
127+
/* border-bottom: 4px solid #0000ce; */
128+
background: rgb(187, 187, 187);
129+
border-radius: 0.5rem;
130+
}
131+
132+
.active-navigation * {
133+
color: #ffffff;
134+
}
135+
136+
a:-webkit-any-link:active {
137+
color: none;
138+
}
139+
140+
a {
141+
text-decoration: none;
142+
}
143+
144+
.error-page {
145+
width: 100%;
146+
height: 50vh;
147+
flex-direction: column;
148+
display: flex;
149+
justify-content: center;
150+
align-items: center;
151+
font-size: 0.75rem;
152+
}
153+
154+
.error-page * {
155+
color: #dedede;
156+
font-family: monospace;
157+
padding: 0.5rem 0;
158+
}
159+
.bio{
160+
color: rgb(0, 0, 0);
161+
}
162+
::-webkit-scrollbar {
163+
width: 10px;
164+
165+
}
166+
167+
168+
169+
170+
171+
/* Handle */
172+
::-webkit-scrollbar-thumb {
173+
174+
transition: 0.5s linear;
175+
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%)
176+
177+
}
178+
179+
::-webkit-scrollbar-thumb:hover{
180+
background: linear-gradient(45deg, #af6d26 0%,#a34b2b 25%,#a01c30 50%,#8d1847 75%,#7c105a 100%)
181+
}

Instagram Downloader V2/src/App.js

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
import { Switch, Route } from "react-router-dom";
2+
import Header from "./components/Header/Header";
3+
import Profile from "./components/Profile";
4+
import Story from "./components/Story";
5+
import Reels from "./components/Reels";
6+
import ReelsDown from "./components/ReelsDown";
7+
import Post from "./components/Post";
8+
import PostDown from "./components/PostDown";
9+
import ProfileHd from "./components/ProfileHd";
10+
import Igtv from "./components/Igtv";
11+
import Feed from "./components/Feed";
12+
import FeedDownload from "./components/feedDownload";
13+
import Music from "./components/music";
14+
import Error from "./components/Error";
15+
import Footer from "./components/Footer/Footer";
16+
import StoryDownload from "./components/StoryDownload"
17+
import IgtvDown from "./components/IgtvDown";
18+
import "./App.css";
19+
import "./components/Styles/commonStyles.css";
20+
21+
22+
const App = () => {
23+
return (
24+
<>
25+
<Header />
26+
<Switch>
27+
<Route exact path="/igvio/#/" component={Feed} />
28+
<Route path="/igvio/profile" component={Profile} />
29+
<Route path="/igvio/story" component={Story} />
30+
<Route path="/igvio/storydownload" component={StoryDownload} />
31+
<Route path="/igvio/reel" component={Reels} />
32+
<Route path="/igvio/reeldownload" component={ReelsDown} />
33+
<Route path="/igvio/post" component={Post} />
34+
<Route path="/igvio/postdownload" component={PostDown} />
35+
<Route path="/igvio/profilehd" component={ProfileHd} />
36+
<Route path="/igvio/igtv" component={Igtv} />
37+
<Route path="/igvio/igtvdownload" component={IgtvDown} />
38+
<Route path="/igvio/feed" component={Feed} />
39+
<Route path="/igvio/feedDownload" component={FeedDownload} />
40+
<Route path="/igvio/music" component={Music} />
41+
<Route component={Error} />
42+
<Route />
43+
</Switch>
44+
<Footer />
45+
</>
46+
);
47+
};
48+
49+
export default App;
Lines changed: 54 additions & 0 deletions
Loading
Lines changed: 26 additions & 0 deletions
Loading
Lines changed: 26 additions & 0 deletions
Loading
15.8 KB
Loading

Instagram Downloader V2/src/Media/feed.svg

Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 38 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)