@@ -5,194 +5,51 @@ $quaternary-color: #95b9b0;
5
5
$background-color : #262f2aec ;
6
6
$list-item-color : #2bd4a0 ;
7
7
$text-color : #fafff0 ;
8
- $font-color : #a2aa94 ;
8
+ $font-color : #000000 ;
9
9
$hover-color : #ced4da ;
10
10
$box-shadow : 0 4px 10px rgba (0 , 0 , 0 , 0.1 );
11
11
$border-radius : 8px ;
12
12
$language-item-tint : darken ($list-item-color , 30% );
13
13
$framework-item-tint : darken ($list-item-color , 35% );
14
14
$tools-item-tint : darken ($list-item-color , 40% );
15
15
16
- @font-face {
17
- font-family : ' Poppins' ;
18
- src : url (' ../../Assets/Fonts/Poppins-Regular.ttf' ) format (' truetype' );
19
- font-weight : 400 ;
20
- font-style : normal ;
16
+ * {
17
+ box-sizing : border-box ;
21
18
}
22
19
23
20
.AboutContainer {
24
- padding : 40px ;
25
- margin-top : 20px ;
26
- margin-left : auto ;
27
- margin-right : auto ;
28
- }
29
-
30
- .AboutContentContainer {
31
- display : flex ;
32
- justify-content : space-between ;
33
- align-items : flex-start ;
34
- }
21
+ margin-top : 100px ;
22
+ width : 100% ;
23
+ max-width : 100% ;
24
+ overflow-x : hidden ;
25
+ justify-self : center ;
35
26
36
- .AboutContent {
37
- flex : 1 ;
38
- margin-right : 50px ;
39
- font-size : 1rem ;
40
- line-height : 1.4 ;
41
- color : $secondary-color ;
42
- background-color : rgba (darken ($background-color , 10% ), 0.25 );
43
- border-radius : $border-radius ;
44
- box-shadow : 0 2px 8px rgba (0 , 0 , 0 , 0.6 );
27
+ @media screen and (max-width : 768px ) {
28
+ margin-top : 0px ;
29
+ }
30
+ @media screen and (max-width : 1024px ) {
31
+ margin-top : 0px ;
32
+ }
45
33
}
46
34
47
35
.AboutText {
48
- font-family : ' Poppins' , sans-serif ;
49
- font-size : 1.8em ;
50
- font-weight : 400 ;
51
- color : lighten ($font-color , 30% );
52
- padding : 0px 40px 0px 30px ; /* top, right, bottom, left */
53
- }
54
-
55
- @media screen and (max-width : 768px ) {
56
- .AboutContentContainer {
57
- flex-direction : column ;
58
- }
59
-
60
- .AboutContent {
61
- margin-right : 0 ;
62
- margin-bottom : 30px ;
63
- }
36
+ font-weight : 500 ;
37
+ color : rgb (34 ,34 ,34 );
38
+ font-size : 1.2em ;
39
+ width : 100% ;
64
40
}
65
41
66
42
@media screen and (max-width : 768px ) {
67
43
.AboutText {
68
44
font-size : 1.4em ;
69
- padding-left : 20px ;
70
- padding-right : 20px ;
71
- text-align : center ;
72
45
}
73
46
}
74
47
75
48
.hoverLink {
76
- color : $list-item-color ;
77
- }
78
-
79
- @keyframes gradientAnimation {
80
- 0% {
81
- background-position : 0% 50% ;
82
- }
83
- 50% {
84
- background-position : 100% 50% ;
85
- }
86
- 100% {
87
- background-position : 0% 50% ;
88
- }
49
+ font-weight : 600 ;
50
+ color : darken ($primary-color , 25% );
89
51
}
90
52
91
53
.hoverLink :hover {
92
- background : linear-gradient (
93
- 90deg ,
94
- $primary-color ,
95
- $secondary-color ,
96
- $tertiary-color ,
97
- $quaternary-color
98
- );
99
-
100
- background-size : 200% 200% ;
101
- -webkit-background-clip : text ;
102
- background-clip : text ;
103
- -webkit-text-fill-color : transparent ;
104
- animation : gradientAnimation 5s ease infinite ;
105
- }
106
-
107
- .AboutImageContainer {
108
- display : flex ;
109
- flex-direction : column ;
110
- justify-content : center ;
111
- align-items : center ;
112
- height : 100% ;
113
- margin : 0 auto ;
114
- }
115
-
116
- .AboutImage {
117
- border-radius : $border-radius ;
118
- box-shadow : 0 2px 8px rgba (0 , 0 , 0 , 0.6 );
119
- }
120
-
121
- .DownloadCVButton {
122
- display : flex ;
123
- align-items : center ;
124
- justify-content : center ;
125
- margin-top : 20px ;
126
- padding : 12px 24px ;
127
- background : darken (#2bd4a0 , 30% );
128
- color : $text-color ;
129
- border : none ;
130
- border-radius : $border-radius ;
131
- cursor : pointer ;
132
- font-size : 1.1em ;
133
- font-family : ' Poppins' , sans-serif ;
134
- font-weight : 500 ;
135
- box-shadow : $box-shadow ;
136
- transition :
137
- background 0.3s ease ,
138
- transform 0.2s ease ;
139
-
140
- & :hover {
141
- transform : translateY (-2px );
142
- }
143
- }
144
-
145
- .DownloadIcon {
146
- margin-right : 10px ;
147
- margin-top : -3px ;
148
- font-size : 1.2em ;
149
- }
150
-
151
- @media screen and (max-width : 768px ) {
152
- .AboutImage {
153
- width : 100% ;
154
- }
155
- }
156
-
157
- .ButtonContainer {
158
- display : flex ;
159
- align-items : center ;
160
- gap : 10px ;
161
- margin-top : 20px ;
162
- }
163
-
164
- .GitHubButton {
165
- background-color : #161a1f ;
166
- display : flex ;
167
- align-items : center ;
168
- justify-content : center ;
169
- margin-top : 20px ;
170
- padding : 12px 24px ;
171
- color : $text-color ;
172
- border : none ;
173
- border-radius : $border-radius ;
174
- cursor : pointer ;
175
- font-size : 1.1em ;
176
- font-family : ' Poppins' , sans-serif ;
177
- font-weight : 500 ;
178
- box-shadow : $box-shadow ;
179
- transition :
180
- background 0.3s ease ,
181
- transform 0.2s ease ;
182
-
183
- & :hover {
184
- transform : translateY (-2px );
185
- }
186
- }
187
-
188
- .GitHubIcon {
189
- margin-left : 10px ;
190
- margin-top : -3px ;
191
- font-size : 1.2em ;
192
- }
193
-
194
- .StarIcon {
195
- margin-right : 10px ;
196
- margin-top : -3px ;
197
- font-size : 1.2em ;
54
+ color : darken ($primary-color , 15% );
198
55
}
0 commit comments