Skip to content

Commit c78555f

Browse files
authored
media, static, templates folders upload
1 parent fba1dbe commit c78555f

Some content is hidden

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

87 files changed

+3443
-0
lines changed
Loading
7.63 KB
Loading
Loading

media/contest_logo/codeforces.png

17.7 KB
Loading

media/contest_logo/hackerranklogo.jpg

3.52 KB
Loading

media/default.jpg

4.16 KB
Loading

media/profile_pics/4.png

401 KB
Loading

media/profile_pics/Document_96_2.jpg

54.5 KB
Loading
54.5 KB
Loading

media/profile_pics/Document_96_3.jpg

167 KB
Loading

media/profile_pics/Document_96_5.jpg

113 KB
Loading
23.4 KB
Loading

media/profile_pics/default.jpg

4.16 KB
Loading
224 KB
Loading

media/profile_pics/jestin_profile.jpg

178 KB
Loading

media/profile_pics/passportimage.jpg

378 KB
Loading
378 KB
Loading
378 KB
Loading
378 KB
Loading
378 KB
Loading
378 KB
Loading
378 KB
Loading
Loading

media/profile_pics/scan001.jpg

49.9 KB
Loading
49.9 KB
Loading

media/profile_pics/sumit_profile.jpg

120 KB
Loading
127 KB
Loading

static/css/base.css

+259
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,259 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
font-family: "Source Code Pro", monospace;
5+
}
6+
7+
html,
8+
body {
9+
height: 100%;
10+
}
11+
.video-background {
12+
position: fixed;
13+
top: 0;
14+
left: 0;
15+
min-width: 100%;
16+
min-height: 100%;
17+
z-index: -1;
18+
}
19+
20+
/* Style the video */
21+
.video-background video {
22+
object-fit: cover;
23+
filter: blur(20px); /* added filter property to blur video */
24+
-webkit-filter: blur(
25+
20px
26+
); /* added -webkit-filter for cross-browser support */
27+
}
28+
29+
body {
30+
/* background: linear-gradient(to right, hsl(201, 73%, 91%), hsl(201, 76%, 90%), hsl(202, 81%, 88%), hsl(200, 77%, 85%), hsl(200, 89%, 79%)); */
31+
/* background-image: url(../images/home_bg.jpg);
32+
background-size: 100% 100%;
33+
background-repeat: no-repeat; */
34+
/* animation: gradient 50s ease 2s infinite; */
35+
36+
background-image: url(../images/home_bg.jpg);
37+
background-repeat: no-repeat;
38+
background-size: cover;
39+
background-attachment: fixed;
40+
background-position: 50% 0;
41+
}
42+
43+
@keyframes gradient {
44+
0% {
45+
background-position: 0% 50%;
46+
}
47+
50% {
48+
background-position: 100% 50%;
49+
}
50+
100% {
51+
background-position: 0% 50%;
52+
}
53+
}
54+
55+
.logo-heading {
56+
padding: 5px;
57+
font-size: 1.5rem;
58+
}
59+
60+
/* NavBar */
61+
62+
nav {
63+
display: flex;
64+
padding: 2% 6%;
65+
justify-content: space-between;
66+
align-items: center;
67+
background-color: transparent;
68+
color: #000000;
69+
}
70+
71+
nav img {
72+
border-radius: 100%;
73+
width: 80px;
74+
}
75+
76+
.nav-links {
77+
flex: 1;
78+
text-align: right;
79+
padding-right: 20px;
80+
}
81+
82+
.nav-links ul {
83+
margin: 0;
84+
padding: 0;
85+
list-style: none;
86+
display: flex;
87+
justify-content: flex-end;
88+
align-items: center;
89+
}
90+
91+
.nav-links ul li {
92+
display: inline-block;
93+
margin-left: 10px;
94+
margin-right: 20px;
95+
position: relative;
96+
}
97+
98+
.nav-links ul li a {
99+
color: #000000;
100+
text-decoration: none;
101+
display: inline-block;
102+
padding: 10px;
103+
border-radius: 40%;
104+
border: 1px solid transparent;
105+
box-shadow: 0 0 0 rgba(98, 98, 98, 0.1);
106+
transition: all 0.1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
107+
}
108+
109+
.nav-links ul li a:hover {
110+
/* border-color: #000; */
111+
/* border: 1px solid grey; */
112+
box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
113+
transform: scale(1.1);
114+
}
115+
116+
.nav-links ul li:hover::after {
117+
width: 100%;
118+
}
119+
120+
.text-box {
121+
width: 90%;
122+
color: #fff;
123+
position: absolute;
124+
top: 50%;
125+
left: 50%;
126+
transform: translate(-50%, -50%);
127+
text-align: center;
128+
}
129+
130+
.text-box h1 {
131+
font-size: 62px;
132+
}
133+
134+
.text-box p {
135+
margin: 10px 0 40px;
136+
font-size: 14px;
137+
color: #fff;
138+
font-size: 20px;
139+
}
140+
141+
.hero-btn {
142+
display: inline-block;
143+
text-decoration: none;
144+
color: #fff;
145+
border: 1px solid #fff;
146+
padding: 12px 34px;
147+
font-size: 13px;
148+
background: transparent;
149+
position: relative;
150+
cursor: pointer;
151+
}
152+
153+
.hero-btn:hover {
154+
border: 1px solid #f44336;
155+
background: #f44336;
156+
transition: 1s;
157+
}
158+
159+
nav .fa {
160+
display: none;
161+
}
162+
/* Responsive Main page*/
163+
@media (max-width: 700px) {
164+
.text-box h1 {
165+
font-size: 20px;
166+
}
167+
168+
.nav-links ul li {
169+
display: block;
170+
}
171+
172+
.nav-links {
173+
position: absolute;
174+
background: #fff;
175+
height: 100vh;
176+
width: 200px;
177+
top: 0;
178+
right: -200px;
179+
text-align: left;
180+
z-index: 2;
181+
transition: 1s;
182+
}
183+
184+
nav .fa {
185+
display: block;
186+
color: #ffffff;
187+
margin: 10px;
188+
font-size: 22px;
189+
cursor: pointer;
190+
}
191+
192+
.nav-links ul {
193+
padding: 30px;
194+
}
195+
}
196+
197+
/* Profile Picture */
198+
199+
.profile-picture-container {
200+
position: relative;
201+
display: flex;
202+
align-items: center;
203+
margin-left: 1.5rem;
204+
margin-right: 1.5rem;
205+
cursor: pointer;
206+
}
207+
208+
.profile-picture {
209+
width: 80px;
210+
height: 80px;
211+
border-radius: 50%;
212+
object-fit: cover;
213+
margin-left: 10px;
214+
transition: all 0.2s ease-in-out;
215+
}
216+
217+
.profile-picture:hover {
218+
transform: scale(1.2);
219+
}
220+
221+
.dropdown-menu {
222+
background-color: rgba(255, 255, 255, 0.5);
223+
display: none;
224+
position: absolute;
225+
top: calc(100% + 8px);
226+
left: -20px;
227+
z-index: 1;
228+
box-shadow: 0 0 0 rgba(66, 66, 66, 0.5);
229+
min-width: 160px;
230+
padding: 12px 16px;
231+
border-radius: 4px;
232+
}
233+
234+
.dropdown-menu a {
235+
background-color: transparent;
236+
color: black;
237+
display: block;
238+
font-size: 16px;
239+
font-weight: bold;
240+
padding: 8px 0;
241+
text-decoration: none;
242+
}
243+
244+
.dropdown-menu a:hover {
245+
background-color: rgba(0, 0, 0, 0.5);
246+
color: #fff;
247+
border-radius: 4px;
248+
padding: 8px 10px;
249+
}
250+
251+
footer {
252+
margin-bottom: 0;
253+
text-align: center;
254+
}
255+
256+
footer .footer-content {
257+
width: 100%;
258+
background-color: #1d90be;
259+
}

0 commit comments

Comments
 (0)