Skip to content

Commit 335c0dd

Browse files
committed
update resume
1 parent 4f23f6b commit 335c0dd

File tree

4 files changed

+29
-7
lines changed

4 files changed

+29
-7
lines changed

Resume.pdf

90 Bytes
Binary file not shown.

css/index.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -333,9 +333,9 @@ nav li a
333333
.table2 tbody tr td:nth-child(2) div{
334334
display: flex;
335335
}
336-
.comapny_logo{
337-
width: 50px;
338-
height: auto;
336+
.company_logo{
337+
width: 60px;
338+
height: 60px;
339339
padding-top: 0px;
340340
border-radius: 50%;
341341
}

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ <h1 class="text-center section-heading">
425425
<!-- add company logo company name and company link -->
426426
<td>
427427
<div >
428-
<img src="Images/flodata.webp" alt="Company Logo" class="img-responsive img-fluid comapny_logo">
428+
<img src="Images/flodata.webp" alt="Company Logo" class="img-responsive img-fluid company_logo">
429429
<p>Flodata Analytics</p>
430430
<span class="text-center">
431431
<a href="https://flodataanalytics.com/" target="_blank">

js/change_mode.js

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,17 @@ function change_light_mode()
4545

4646
// js for contact me section end
4747

48+
// js for experience section start
49+
50+
var logo_background = document.getElementsByClassName("company_logo")[0];
51+
logo_background.style.backgroundColor="white";
52+
53+
var column=document.querySelectorAll(".table2 tbody tr");
54+
for(var i=0;i<column.length;i+=2)
55+
column[i].style.backgroundColor="#141414";
56+
57+
// js for experience section end
58+
4859
// js for connect me section start
4960
var github=document.querySelectorAll(".github a i")[0];
5061
github.style.color="white";
@@ -84,13 +95,24 @@ function change_dark_mode()
8495
for(var i=0;i<column.length;i+=2)
8596
column[i].style.backgroundColor="rgba(0,0,0,.05)";
8697

87-
// js for project section end
88-
89-
// js for project section start
98+
9099
var list=document.querySelectorAll("tbody tr td");
91100
for(var i=0;i<list.length;i++)
92101
list[i].style.color="black";
93102

103+
104+
// js for project section end
105+
// js for experience section start
106+
107+
var logo_background = document.getElementsByClassName("company_logo")[0];
108+
logo_background.style.backgroundColor="transparent";
109+
110+
var column=document.querySelectorAll(".table2 tbody tr");
111+
for(var i=0;i<column.length;i+=2)
112+
column[i].style.backgroundColor="rgba(0,0,0,0.05)";
113+
114+
// js for experience section end
115+
94116
// js for contact me section start
95117
var list=document.querySelectorAll(".contact div .row");
96118
list[0].style.backgroundColor="white";

0 commit comments

Comments
 (0)