1818 flex-direction : column;
1919 align-items : center;
2020 justify-content : center;
21- height : 100vh ;
21+ overflow-y : scroll;
22+ height : auto;
23+ }
24+ .hamburger div {
25+ width : 25px ;
26+ height : 3px ;
27+ background-color : # 333 ;
28+ margin : 4px ;
29+ transition : 0.4s ;
30+ }
31+ @media only screen and (max-width : 200px ) {
32+ .sponsor-btn {
33+ font-size : 12px !important ;
34+ width : 90px !important ;
35+ height : 46px !important ;
36+ }
37+ .star-button {
38+ font-size : 12px !important ;
39+ width : 90px !important ;
40+ }
41+ }
42+ @media only screen and (max-width : 497px ){
43+ h1 {
44+ font-size : 40px !important ;
45+ }
46+ .main-content {
47+ gap : 30px ;
48+ }
49+ }
50+ @media only screen and (max-width : 347px ){
51+ .logo {
52+ position : relative;
53+ top : 40px ;
54+ }
55+ h1 {
56+ font-size : 30px !important ;
57+ }
58+ .get-started-btn {
59+ position : relative;
60+ }
61+ p {
62+ font-size : 17px !important ;
63+ }
2264}
2365 </ style >
66+
2467</ head >
2568< body >
2669 < header >
2770 < nav >
2871 < a href ="index.html ">
29- < div class ="logo ">
30- < img src ="HelpOps-H Fevicon.png " alt ="Logo ">
31- </ div >
32- </ a >
72+ < div class ="logo ">
73+ < img src ="HelpOps-H Fevicon.png " alt ="Logo ">
74+ </ div >
75+ </ a >
76+
3377 < ul class ="nav-links ">
3478 < li > < a href ="index.html "> Home</ a > </ li >
3579 < li > < a href ="# "> About</ a > </ li >
3680 < li > < a href ="contributor.html "> Team</ a > </ li >
3781 < li > < a href ="# "> Contact</ a > </ li >
3882 </ ul >
83+
3984 < div class ="nav-actions ">
4085 < a href ="https://github.com/sponsors/mdazfar2 ">
4186 < button class ="sponsor-btn "> Sponsor < i id ="heart " class ="fas fa-heart "> </ i > </ button >
4287 </ a >
4388 </ div >
89+ < div class ="hamburger " id ="hamburger ">
90+ < div > </ div >
91+ < div > </ div >
92+ < div > </ div >
93+ </ div >
4494 </ nav >
4595 </ header >
96+ < ul class ="nav-links1 " id ="navlinks1 ">
97+ < li > < a href ="index.html "> Home</ a > </ li >
98+ < li > < a href ="# "> About</ a > </ li >
99+ < li > < a href ="contributor.html "> Team</ a > </ li >
100+ < li > < a href ="# "> Contact</ a > </ li >
101+
102+ </ ul >
46103 < main >
47104 < div class ="main-content ">
48-
49- < button class ="star-button ">
50- < i class ="star-icon "> < i class ="fas fa-star "> </ i > </ i > <!-- This is a star character -->
51- Star Us
52- </ button >
53-
105+ < div class ="conte ">
106+
107+ < button class ="star-button ">
108+ < i class ="star-icon "> < i class ="fas fa-star "> </ i > </ i > <!-- This is a star character -->
109+ Star Us
110+ </ button >
111+ < li class ="isDisplay ">
112+ < a href ="https://github.com/sponsors/mdazfar2 ">
113+ < button class ="sponsor-btn "> Sponsor < i id ="heart " class ="fas fa-heart "> </ i > </ button >
114+ </ a > </ li >
115+ </ div >
54116 < h1 > HelpOps-Hub</ h1 >
55117 < p > Ensuring You Never Get Stuck In DevOps Again!</ p >
56118 < a href ="resources.html ">
@@ -59,5 +121,15 @@ <h1>HelpOps-Hub</h1>
59121 </ div >
60122 </ main >
61123 < script src ="scripts.js "> </ script >
124+ < script >
125+
126+ // if(window.innerWidth>800){
127+ // document.getElementById("navlinks1").style.display='none'
128+ // }
129+ document . getElementById ( 'hamburger' ) . addEventListener ( 'click' , ( e ) => {
130+ let ele = document . getElementById ( "navlinks1" )
131+ document . querySelector ( '.nav-links1' ) . classList . toggle ( 'active' ) ;
132+ } )
133+ </ script >
62134</ body >
63135</ html >
0 commit comments