File tree Expand file tree Collapse file tree 6 files changed +166
-20
lines changed Expand file tree Collapse file tree 6 files changed +166
-20
lines changed Original file line number Diff line number Diff line change 6
6
7
7
<div align =" center " >
8
8
9
- ![ GitHub repo size] ( https://img.shields.io/github/repo-size/nirmalyax/React-folio?color=yellow ) [ ![ PRs Welcome] ( https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square )] ( http://makeapullrequest.com ) [ ![ Open Source Love svg2] ( https://badges.frapsoft.com/os/v2/open-source.svg?v=103 )] ( https://github.com/ellerbrock/open-source-badges/ )
9
+ ![ GitHub repo size] ( https://img.shields.io/github/repo-size/nirmalyax/React-folio?color=yellow ) [ ![ PRs Welcome] ( https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square )] ( http://makeapullrequest.com ) [ ![ Open Source Love svg2] ( https://badges.frapsoft.com/os/v2/open-source.svg?v=103 )] ( https://github.com/ellerbrock/open-source-badges/ )
10
+
10
11
</div >
11
12
12
13
<table align =" center " >
@@ -92,7 +93,7 @@ Clone down this repository. You will need `node.js` and `git` installed globally
92
93
93
94
` ` ` bash
94
95
git clone https://github.com/username/repository-name.git
95
-
96
+ ` ` `
96
97
97
98
# # 🛠 Installation and Setup Instructions
98
99
@@ -105,11 +106,12 @@ Clone down this repository. You will need `node.js` and `git` installed globally
105
106
< br/>
106
107
107
108
Runs the app in the development mode.\
108
- Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
109
+ Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
109
110
The page will reload if you make edits.
110
111
111
112
< br />
112
113
Feel free to contribute to this repo.
113
114
114
115
# ## Show some ❤️ by giving the star :star: to this repository!!
116
+
115
117
< h1 align=center> 🧠 Happy Hacking 🧠 < /h1>
Original file line number Diff line number Diff line change @@ -16,14 +16,18 @@ const Footer = () => {
16
16
< li > < a href = "#contact" > Contact</ a > </ li >
17
17
</ ul >
18
18
< div className = "footer__socials" >
19
- < a href = "https://www.linkedin.com/in/nirmalya-mondal/" target = "_blank" rel = "noreferrer" > < BsLinkedin /> </ a >
20
- < a href = "https://github.com/nirmalyax" target = "_blank" rel = "noreferrer" > < FaGithub /> </ a >
19
+ < a href = "https://www.linkedin.com/in/nirmalya-mondal" target = "_blank" rel = "noopener noreferrer" >
20
+ < BsLinkedin />
21
+ </ a >
22
+ < a href = "https://github.com/nirmalyax" target = "_blank" rel = "noopener noreferrer" >
23
+ < FaGithub />
24
+ </ a >
21
25
</ div >
22
26
< div className = "footer__copyright" >
23
27
< small > ©2023. All rights reserved.</ small >
24
28
</ div >
25
29
</ footer >
26
- )
27
- }
30
+ ) ;
31
+ } ;
28
32
29
- export default Footer
33
+ export default Footer ;
Original file line number Diff line number Diff line change @@ -62,4 +62,62 @@ footer a {
62
62
.footer__socials {
63
63
margin-bottom : 2.6rem ;
64
64
}
65
- }
65
+ }
66
+
67
+
68
+ footer {
69
+ margin : 5 ;
70
+ padding : 0 ;
71
+ }
72
+
73
+
74
+ footer {
75
+ background-color : var (--color-primary );
76
+ color : # fff ;
77
+ text-align : center;
78
+ padding : 10px 0 ;
79
+ font-size : 1.3rem ;
80
+ }
81
+
82
+
83
+ .footer__logo {
84
+ text-decoration : none;
85
+ color : var (--color-bg );
86
+ font-weight : bold;
87
+ }
88
+
89
+
90
+ .permalinks {
91
+ list-style : none;
92
+ padding : 0 ;
93
+ display : flex;
94
+ justify-content : center;
95
+ gap : 20px ;
96
+ margin : 20px 0 ;
97
+ }
98
+
99
+ .permalinks li {
100
+ margin : 0 ;
101
+ }
102
+
103
+ .permalinks a {
104
+ text-decoration : none;
105
+ color : var (--color-bg );
106
+ }
107
+
108
+
109
+ .footer__socials {
110
+ margin : 20px 0 ;
111
+ }
112
+
113
+ .footer__socials a {
114
+ text-decoration : none;
115
+ color : # fff ;
116
+ font-size : 20px ;
117
+ margin : 0 15px ;
118
+ }
119
+
120
+ .footer__copyright {
121
+ font-size : 1.0rem ;
122
+ }
123
+
Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ const Header = () => {
7
7
return (
8
8
< header id = "home" >
9
9
< div className = "container header__container" >
10
- < h5 > Hello I'm</ h5 >
11
- < h1 > Nirmalya Mondal</ h1 >
12
- < h5 className = "text-light" > Front-end Developer & Test Engineer </ h5 >
10
+ < h5 className = "header__text" > Hello I'm</ h5 >
11
+ < h1 className = "header__title" > Nirmalya Mondal</ h1 >
12
+ < h5 className = "header__text text-light" > Front-end Developer & Test Engineer </ h5 >
13
13
< CTA />
14
- < a href = "#contact" className = "scroll__down" >
15
- Scroll Down ⟶
16
- </ a >
14
+ < a href = "#contact" className = "scroll__down" >
15
+ Scroll Down ⟶
16
+ </ a >
17
17
< HeaderSocials />
18
18
</ div >
19
19
</ header >
Original file line number Diff line number Diff line change @@ -2,15 +2,16 @@ import React from 'react';
2
2
import { BsLinkedin } from 'react-icons/bs' ;
3
3
import { FaGithub } from 'react-icons/fa' ;
4
4
import { SiLeetcode } from 'react-icons/si' ;
5
+ import './header.css' ;
5
6
6
7
const HeaderSocials = ( ) => {
7
8
return (
8
9
< div className = "header__socials" >
9
- < a href = "https://www.linkedin.com/in/nirmalya-mondal/" target = "_blank" rel = "noreferrer" > < BsLinkedin /> </ a >
10
- < a href = "https://github.com/nirmalyax" target = "_blank" rel = "noreferrer" > < FaGithub /> </ a >
11
- < a href = "https://leetcode.com/nirmalyax/" target = "_blank" rel = "noreferrer" > < SiLeetcode /> </ a >
10
+ < a href = "https://www.linkedin.com/in/nirmalya-mondal/" target = "_blank" rel = "noreferrer" > < BsLinkedin className = "social-icon" /> </ a >
11
+ < a href = "https://github.com/nirmalyax" target = "_blank" rel = "noreferrer" > < FaGithub className = "social-icon" /> </ a >
12
+ < a href = "https://leetcode.com/nirmalyax/" target = "_blank" rel = "noreferrer" > < SiLeetcode className = "social-icon" /> </ a >
12
13
</ div >
13
14
)
14
15
}
15
16
16
- export default HeaderSocials ;
17
+ export default HeaderSocials ;
Original file line number Diff line number Diff line change @@ -67,4 +67,85 @@ header {
67
67
.scroll__down {
68
68
display : none;
69
69
}
70
- }
70
+ }
71
+
72
+ /* Existing CSS styles
73
+ .header__container {
74
+ padding: 20px;
75
+ text-align: center;
76
+ }
77
+
78
+ .header__title {
79
+ margin-top: 20px;
80
+ }
81
+
82
+ .scroll__down {
83
+ margin-top: 20px;
84
+ margin-left: 30px;
85
+ }
86
+ */
87
+
88
+ .social-icon {
89
+ font-size : 20px ;
90
+
91
+ }
92
+
93
+ @media (min-width : 768px ) {
94
+ .social-icon {
95
+ font-size : 38px ;
96
+ }
97
+ }
98
+
99
+ @media (min-width : 1200px ) {
100
+ .social-icon {
101
+ font-size : 26px ;
102
+ }
103
+ }
104
+
105
+ .scroll__down {
106
+ font-size : 15px ;
107
+ margin-left : 60px ;
108
+ }
109
+
110
+ @media (min-width : 768px ) {
111
+ .scroll__down {
112
+ font-size : 22px ;
113
+ margin-left : 30px ;
114
+ }
115
+ }
116
+
117
+ @media (min-width : 1200px ) {
118
+ .scroll__down {
119
+ font-size : 20px ;
120
+ margin-right : -70px ;
121
+
122
+ }
123
+ }
124
+
125
+ .header__text {
126
+ font-size : 14px ;
127
+ }
128
+
129
+ .header__title {
130
+ font-size : 40px ;
131
+ }
132
+
133
+ @media (min-width : 768px ) {
134
+ .header__text {
135
+ font-size : 18px ;
136
+ }
137
+
138
+ .header__title {
139
+ font-size : 32px ;
140
+ }
141
+ }
142
+
143
+ @media (min-width : 1200px ) {
144
+ .header__text {
145
+ font-size : 20px ;
146
+ }
147
+
148
+ .header__title {
149
+ font-size : 60px ;
150
+ }
151
+ }
You can’t perform that action at this time.
0 commit comments