Skip to content

Commit 7246abb

Browse files
committed
refactored links
1 parent 4ea2d99 commit 7246abb

File tree

5 files changed

+67
-1260
lines changed

5 files changed

+67
-1260
lines changed

assets/css/style.css

+6-284
Original file line numberDiff line numberDiff line change
@@ -196,273 +196,12 @@ section {
196196
/*--------------------------------------------------------------
197197
# Header
198198
--------------------------------------------------------------*/
199-
/* .header {
200-
transition: all 0.5s;
201-
z-index: 997;
202-
padding: 20px 0;
203-
background-color: black;
204-
}
205-
206-
.header.header-scrolled {
207-
background: rgba(31, 30, 30, 0.945);
208-
padding: 15px 0;
209-
box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
210-
}
211-
212-
.header .logo {
213-
line-height: 0;
214-
}
215199

216-
.header .logo img {
217-
max-height: 40px;
218-
margin-right: 6px;
219-
}
220-
221-
.header .logo span {
222-
font-size: 30px;
223-
font-weight: 700;
224-
letter-spacing: 1px;
225-
color: #fff;
226-
font-family: "Nunito", sans-serif;
227-
margin-top: 3px;
228-
}
229-
230-
.margin {
231-
margin: 15px;
232-
} */
233200

234201
/*--------------------------------------------------------------
235202
# Navigation Menu
236203
--------------------------------------------------------------*/
237-
/**
238-
* Desktop Navigation
239-
*/
240-
/* .navbar {
241-
padding: 0;
242-
background:#000;
243-
}
244-
245-
.navbar ul {
246-
margin: 0;
247-
padding: 0;
248-
display: flex;
249-
list-style: none;
250-
align-items: center;
251-
}
252-
253-
.navbar li {
254-
position: relative;
255-
}
256-
257-
.navbar a,
258-
.navbar a:focus {
259-
display: flex;
260-
align-items: center;
261-
justify-content: space-between;
262-
padding: 10px 0 10px 30px;
263-
font-family: "Nunito", sans-serif;
264-
font-size: 16px;
265-
font-weight: 700;
266-
color: #fff;
267-
white-space: nowrap;
268-
transition: 0.3s;
269-
}
270-
271-
.navbar a i,
272-
.navbar a:focus i {
273-
font-size: 12px;
274-
line-height: 0;
275-
margin-left: 5px;
276-
}
277-
278-
.navbar a:hover,
279-
.navbar .active,
280-
.navbar .active:focus,
281-
.navbar li:hover > a {
282-
color: rgb(215, 99, 17);
283-
}
284-
285-
.navbar .getstarted {
286-
background: rgb(215, 99, 17);
287-
padding: 8px 20px;
288-
margin-left: 30px;
289-
border-radius: 4px;
290-
color: #2c3135;
291-
}
292-
293-
.navbar .getstarted:hover {
294-
color: #2c3135;
295-
background: darkorchid;
296-
}
297-
298-
.navbar .dropdown ul {
299-
display: block;
300-
position: absolute;
301-
left: 14px;
302-
top: calc(100% + 30px);
303-
margin: 0;
304-
padding: 10px 0;
305-
z-index: 99;
306-
opacity: 0;
307-
visibility: hidden;
308-
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
309-
transition: 0.3s;
310-
border-radius: 4px;
311-
}
312-
313-
.navbar .dropdown ul li {
314-
min-width: 200px;
315-
}
316-
317-
.navbar .dropdown ul a {
318-
padding: 10px 20px;
319-
font-size: 15px;
320-
text-transform: none;
321-
font-weight: 600;
322-
}
323-
324-
.navbar .dropdown ul a i {
325-
font-size: 12px;
326-
}
327-
328-
.navbar .dropdown ul a:hover,
329-
.navbar .dropdown ul .active:hover,
330-
.navbar .dropdown ul li:hover > a {
331-
color: darkorchid;
332-
}
333-
334-
.navbar .dropdown:hover > ul {
335-
opacity: 1;
336-
top: 100%;
337-
visibility: visible;
338-
}
339-
340-
.navbar .dropdown .dropdown ul {
341-
top: 0;
342-
left: calc(100% - 30px);
343-
visibility: hidden;
344-
}
345-
346-
.navbar .dropdown .dropdown:hover > ul {
347-
opacity: 1;
348-
top: 0;
349-
left: 100%;
350-
visibility: visible;
351-
}
352204

353-
@media (max-width: 1366px) {
354-
.navbar .dropdown .dropdown ul {
355-
left: -90%;
356-
}
357-
.navbar .dropdown .dropdown:hover > ul {
358-
left: -100%;
359-
}
360-
} */
361-
362-
/**
363-
* Mobile Navigation
364-
*/
365-
/* .mobile-nav-toggle {
366-
color: rgb(215, 99, 17);
367-
font-size: 28px;
368-
cursor: pointer;
369-
display: none;
370-
line-height: 0;
371-
transition: 0.5s;
372-
}
373-
374-
.mobile-nav-toggle.bi-x {
375-
color: #2c3135;
376-
}
377-
378-
@media (max-width: 991px) {
379-
.mobile-nav-toggle {
380-
display: block;
381-
}
382-
.navbar ul {
383-
display: none;
384-
}
385-
}
386-
387-
.navbar-mobile {
388-
position: fixed;
389-
overflow: hidden;
390-
top: 0;
391-
right: 0;
392-
left: 0;
393-
bottom: 0;
394-
background: rgba(54, 1, 70, 0.9);
395-
transition: 0.3s;
396-
}
397-
398-
.navbar-mobile .mobile-nav-toggle {
399-
position: absolute;
400-
top: 15px;
401-
right: 15px;
402-
}
403-
404-
.navbar-mobile ul {
405-
display: block;
406-
position: absolute;
407-
top: 55px;
408-
right: 15px;
409-
bottom: 15px;
410-
left: 15px;
411-
padding: 10px 0;
412-
border-radius: 10px;
413-
background-color: #2c3135;
414-
overflow-y: auto;
415-
transition: 0.3s;
416-
}
417-
418-
.navbar-mobile a {
419-
padding: 10px 20px;
420-
font-size: 15px;
421-
color: rgb(255, 255, 255);
422-
}
423-
424-
.navbar-mobile a:hover,
425-
.navbar-mobile .active,
426-
.navbar-mobile li:hover > a {
427-
}
428-
429-
.navbar-mobile .getstarted {
430-
margin: 15px;
431-
}
432-
433-
.navbar-mobile .dropdown ul {
434-
position: static;
435-
display: none;
436-
margin: 10px 20px;
437-
padding: 10px 0;
438-
z-index: 99;
439-
opacity: 1;
440-
visibility: visible;
441-
background: #fff;
442-
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
443-
}
444-
445-
.navbar-mobile .dropdown ul li {
446-
min-width: 200px;
447-
}
448-
449-
.navbar-mobile .dropdown ul a {
450-
padding: 10px 20px;
451-
}
452-
453-
.navbar-mobile .dropdown ul a i {
454-
font-size: 12px;
455-
}
456-
457-
.navbar-mobile .dropdown ul a:hover,
458-
.navbar-mobile .dropdown ul .active:hover,
459-
.navbar-mobile .dropdown ul li:hover > a {
460-
color: #4154f1;
461-
}
462-
463-
.navbar-mobile .dropdown > .dropdown-active {
464-
display: block;
465-
} */
466205

467206
#header {
468207
background: rgba(25, 25, 25, 0.95);
@@ -504,6 +243,7 @@ section {
504243
*/
505244
.navbar {
506245
padding: 0;
246+
font-family: 'Space Mono', monospace;
507247
}
508248

509249
.navbar ul {
@@ -548,6 +288,7 @@ section {
548288
.navbar li:hover > a {
549289
background: #e35e2a;
550290
color: black;
291+
551292
}
552293

553294
.navbar .dropdown ul {
@@ -984,27 +725,6 @@ section {
984725
# Team
985726
--------------------------------------------------------------*/
986727

987-
/* .eventss{
988-
display: flex;
989-
justify-content: center;
990-
align-items: center;
991-
flex-wrap: wrap;
992-
background: #161623; */
993-
/* min-height: 100vh; */
994-
995-
/* section{
996-
position: relative;
997-
} */
998-
/* section::before{
999-
content:'';
1000-
position: absolute;
1001-
top: 0;
1002-
left: 0;
1003-
width: 100%;
1004-
height: 100%;
1005-
background: linear-gradient(#f00,#f0f);
1006-
clip-path: circle(30% at 10% 10%);
1007-
} */
1008728
.team {
1009729
background: url(../img/Firefly-50s-1084px.svg);
1010730
}
@@ -1545,7 +1265,9 @@ section {
15451265
border-bottom-right-radius: 40px;
15461266
}
15471267
.stuc {
1548-
width: 200px;
1268+
width: 250px;
1269+
padding-left: 10px;
1270+
font-family: 'Space Mono', monospace;
15491271
}
15501272

15511273
.main {
@@ -1754,7 +1476,7 @@ body,
17541476

17551477
.down {
17561478
font: 600 1em/1.5 "Neuton";
1757-
background: #090d00;
1479+
background: #000000;
17581480
color: rgba(255, 255, 255, 0.25);
17591481
text-align: center;
17601482
margin: 0;

assets/img/coming.jpg

35.1 KB
Loading

assets/img/team/TaranPresi.jpg

154 KB
Loading

assets/js/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ class CreateParticles {
114114
this.buttom = false;
115115

116116
this.data = {
117-
text: "STUDENTS' \n COUNCIL",
117+
text: "STUDENTS'\n COUNCIL \n2022-2023",
118118
amount: 1500,
119119
particleSize: 1,
120120
particleColor: 0xffffff,

0 commit comments

Comments
 (0)