Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
nilankajayalath authored Jul 29, 2024
1 parent 64edc37 commit 4aabed2
Show file tree
Hide file tree
Showing 18 changed files with 1,663 additions and 0 deletions.
Binary file added Nilankajayalath_CV.pdf
Binary file not shown.
4 changes: 4 additions & 0 deletions css/color1.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

:root{
--skin-color:#ec1839;
}
3 changes: 3 additions & 0 deletions css/color2.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
:root{
--skin-color:#fa5b0f;
}
3 changes: 3 additions & 0 deletions css/color3.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
:root{
--skin-color:#37b182;
}
3 changes: 3 additions & 0 deletions css/color4.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
:root{
--skin-color:#1854b4;
}
3 changes: 3 additions & 0 deletions css/color5.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
:root{
--skin-color:#f021b2;
}
74 changes: 74 additions & 0 deletions css/style-switcher.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
.style-switcher{
position: fixed;
right: 0;
top: 60px;
padding: 15px;
width: 200px;
border: 1px solid var(--bg-black-50);
background: var(--bg-black-100);
z-index: 101;
border-radius: 5px;
transition: all 0.3s ease;
transform: translateX(100%);
}
.style-switcher.open{
transform: translateX(-25px);
}
.style-switcher .s-icon{
position: absolute;
height: 40px;
width: 40px;
text-align: center;
font-size: 20px;
background: var(--bg-black-100);
color: var(--text-black-900);
right: 100%;
border: 1px solid var(--bg-black-50);
margin-right: 25px;
cursor: pointer;
transition: all 0.3s ease;
border-radius: 50%;
}
.style-switcher .s-icon i{
line-height: 40px;
}
.style-switcher .style-switcher-toggler{
top: 0;
}
.style-switcher .day-night{
top: 55px;
}
.style-switcher h4{
margin: 0 0 10px;
color: var(--text-black-700);
font-size: 16px;
font-weight: 600;
text-transform: capitalize;
}
.style-switcher .colors{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.style-switcher .colors span{
display: inline-block;
height: 30px;
width: 30px;
border-radius: 50%;

}
.style-switcher .color1{
background: #ec1839;
}
.style-switcher .color2{
background: #fa5b0f;
}
.style-switcher .color3{
background: #37b182;
}
.style-switcher .color4{
background: #1854b4;
}
.style-switcher .color5{
background: #f021b2;
}
Loading

0 comments on commit 4aabed2

Please sign in to comment.