@@ -4,7 +4,7 @@ var full_screen=document.getElementsByTagName("body");
4
4
function change_light_mode ( )
5
5
{
6
6
// js for main section start
7
- full_screen [ 0 ] . style . backgroundColor = "#242526 ";
7
+ full_screen [ 0 ] . style . backgroundColor = "#303030 ";
8
8
document . getElementsByClassName ( "dark" ) [ 0 ] . style . display = "block" ;
9
9
document . getElementsByClassName ( "light" ) [ 0 ] . style . display = "none" ;
10
10
document . getElementsByClassName ( "intro" ) [ 0 ] . style . color = "white" ;
@@ -26,22 +26,36 @@ function change_light_mode()
26
26
// js for skill section end here
27
27
28
28
// js for project section start
29
- var column = document . querySelectorAll ( ".table1 tbody tr" ) ;
30
- for ( var i = 0 ; i < column . length ; i += 2 )
31
- column [ i ] . style . backgroundColor = "#141414" ;
29
+ var project_section_column = document . querySelectorAll ( ".table1 tbody tr" ) ;
30
+ for ( var i = 0 ; i < project_section_column . length ; i += 2 ) {
31
+ project_section_column [ i ] . style . backgroundColor = "#181818" ;
32
+ }
32
33
33
- // js for project section end
34
-
35
- // js for project section start
36
- var list = document . querySelectorAll ( "tbody tr td" ) ;
37
- for ( var i = 0 ; i < list . length ; i ++ )
38
- list [ i ] . style . color = "white" ;
34
+ var project_section_text = document . querySelectorAll ( ".table1_body tr td" ) ;
35
+ for ( var i = 0 ; i < project_section_text . length ; i ++ ) {
36
+ project_section_text [ i ] . style . color = "white" ;
37
+ }
39
38
40
39
// js for project section end here
41
40
41
+ // js for experience section start
42
+
43
+ var experience_column = document . querySelectorAll ( ".experience_section .container .table2 .table2_tbody tr" ) ;
44
+ for ( var i = 0 ; i < experience_column . length ; i += 2 ) {
45
+ experience_column [ i ] . style . backgroundColor = "#181818" ;
46
+ }
47
+
48
+ var experience_section_text = document . querySelectorAll ( ".table2_tbody tr td" ) ;
49
+ for ( var i = 0 ; i < experience_section_text . length ; i ++ ) {
50
+ experience_section_text [ i ] . style . color = "white" ;
51
+ }
52
+
53
+ // js for experience section end here
54
+
55
+
42
56
// js for contact me section start
43
57
var list = document . querySelectorAll ( ".contact div .row" ) ;
44
- list [ 0 ] . style . backgroundColor = "#242526 " ;
58
+ list [ 0 ] . style . backgroundColor = "#303030 " ;
45
59
46
60
// js for contact me section end
47
61
@@ -54,7 +68,41 @@ function change_light_mode()
54
68
instagram . style . color = "white" ;
55
69
var twitter = document . querySelectorAll ( ".twitter_account a i" ) [ 0 ] ;
56
70
twitter . style . color = "white" ;
71
+ var youtube = document . querySelectorAll ( ".youtube_account a i" ) [ 0 ] ;
72
+ youtube . style . color = "white" ;
57
73
74
+ $ ( document ) . ready ( function ( ) {
75
+ $ ( github ) . hover ( function ( ) {
76
+ $ ( this ) . css ( "color" , "#ffffff" ) ;
77
+ } ,
78
+ function ( ) {
79
+ $ ( this ) . css ( "color" , "#ffffff" ) ;
80
+ } ) ;
81
+ $ ( linkedin ) . hover ( function ( ) {
82
+ $ ( this ) . css ( "color" , "#ffffff" ) ;
83
+ } ,
84
+ function ( ) {
85
+ $ ( this ) . css ( "color" , "#ffffff" ) ;
86
+ } ) ;
87
+ $ ( instagram ) . hover ( function ( ) {
88
+ $ ( this ) . css ( "color" , "#ffffff" ) ;
89
+ } ,
90
+ function ( ) {
91
+ $ ( this ) . css ( "color" , "#ffffff" ) ;
92
+ } ) ;
93
+ $ ( twitter ) . hover ( function ( ) {
94
+ $ ( this ) . css ( "color" , "#ffffff" ) ;
95
+ } ,
96
+ function ( ) {
97
+ $ ( this ) . css ( "color" , "#ffffff" ) ;
98
+ } ) ;
99
+ $ ( youtube ) . hover ( function ( ) {
100
+ $ ( this ) . css ( "color" , "#ffffff" ) ;
101
+ } ,
102
+ function ( ) {
103
+ $ ( this ) . css ( "color" , "#ffffff" ) ;
104
+ } ) ;
105
+ } ) ;
58
106
59
107
// js for connect me section end
60
108
@@ -97,12 +145,28 @@ function change_dark_mode()
97
145
98
146
// js for project section end
99
147
148
+ // js for experience section start
149
+
150
+ var experience_column = document . querySelectorAll ( ".experience_section .container .table2 .table2_tbody tr" ) ;
151
+ for ( var i = 0 ; i < experience_column . length ; i += 2 ) {
152
+ experience_column [ i ] . style . backgroundColor = "rgba(0,0,0,.05)" ;
153
+ }
154
+
155
+ var experience_section_text = document . querySelectorAll ( ".table2_tbody tr td" ) ;
156
+ for ( var i = 0 ; i < experience_section_text . length ; i ++ ) {
157
+ experience_section_text [ i ] . style . color = "black" ;
158
+ }
159
+
160
+ // js for experience section end here
161
+
100
162
// js for contact me section start
101
163
var list = document . querySelectorAll ( ".contact div .row" ) ;
102
164
list [ 0 ] . style . backgroundColor = "white" ;
103
165
// js for contact me section end
104
166
105
167
168
+ // js for connect me section start
169
+
106
170
var github = document . querySelectorAll ( ".github_account a i" ) [ 0 ] ;
107
171
github . style . color = "black" ;
108
172
var linkedin = document . querySelectorAll ( ".linkedin_account a i" ) [ 0 ] ;
@@ -111,32 +175,40 @@ function change_dark_mode()
111
175
instagram . style . color = "black" ;
112
176
var twitter = document . querySelectorAll ( ".twitter_account a i" ) [ 0 ] ;
113
177
twitter . style . color = "black" ;
178
+ var youtube = document . querySelectorAll ( ".youtube_account a i" ) [ 0 ] ;
179
+ youtube . style . color = "black" ;
114
180
$ ( document ) . ready ( function ( )
115
181
{
116
182
$ ( github ) . hover ( function ( )
117
183
{
118
- $ ( this ) . css ( "color" , "#7456c6 " ) ;
184
+ $ ( this ) . css ( "color" , "#171515 " ) ;
119
185
} ,
120
186
function ( )
121
187
{
122
188
$ ( this ) . css ( "color" , "black" ) ;
123
189
} ) ;
124
190
$ ( linkedin ) . hover ( function ( )
125
191
{
126
- $ ( this ) . css ( "color" , "#7456c6 " ) ;
192
+ $ ( this ) . css ( "color" , "#0e76a8 " ) ;
127
193
} ,
128
194
function ( )
129
195
{
130
196
$ ( this ) . css ( "color" , "black" ) ;
131
197
} ) ;
132
198
$ ( instagram ) . hover ( function ( ) {
133
- $ ( this ) . css ( "color" , "#7456c6 " ) ;
199
+ $ ( this ) . css ( "color" , "#bc2a8d " ) ;
134
200
} ,
135
201
function ( ) {
136
202
$ ( this ) . css ( "color" , "black" ) ;
137
203
} ) ;
138
204
$ ( twitter ) . hover ( function ( ) {
139
- $ ( this ) . css ( "color" , "#7456c6" ) ;
205
+ $ ( this ) . css ( "color" , "#1DA1F2" ) ;
206
+ } ,
207
+ function ( ) {
208
+ $ ( this ) . css ( "color" , "black" ) ;
209
+ } ) ;
210
+ $ ( youtube ) . hover ( function ( ) {
211
+ $ ( this ) . css ( "color" , "red" ) ;
140
212
} ,
141
213
function ( ) {
142
214
$ ( this ) . css ( "color" , "black" ) ;
0 commit comments