diff --git a/index.html b/index.html index d1052a2..ad3ad16 100644 --- a/index.html +++ b/index.html @@ -52,17 +52,14 @@

Soft skills

  • Time management

  • -
    -

    Certificates

    - In progress... -
    -
    - +
    -

    Hi 👋, I'm Clint G. L. Simiyu

    -

    A passionate computer scientist and backend developer

    +
    +

    Hi 👋, I'm Clint G. L. Simiyu

    +

    A passionate computer scientist and web developer

    +
    @@ -135,7 +132,9 @@

    Languages and Tools:

    @@ -161,7 +160,6 @@

    Connect with me:

    -
    diff --git a/resources/css/portfolio.css b/resources/css/portfolio.css index 6243b4f..6831c5b 100644 --- a/resources/css/portfolio.css +++ b/resources/css/portfolio.css @@ -74,6 +74,7 @@ .main{ margin: 0 20px auto; } + #projects_div{ background-color: rgba(0,0,0,0); } @@ -157,6 +158,7 @@ a:hover{ border-radius: 10px; } + .hidden{ width: 0; } @@ -210,11 +212,6 @@ a:hover{ color: #0554ff; position: fixed; } -.bottom{ - opacity: 0; - position: fixed; - bottom: 0; -} @media screen and (min-width: 200px) and (max-width: 420px) { /* Majority of mobile devices*/ diff --git a/resources/documents/certificates/ClintSimiyu-October 2023 Cyb-certificate.pdf b/resources/documents/certificates/ClintSimiyu-October 2023 Cyb-certificate.pdf new file mode 100755 index 0000000..480fac4 Binary files /dev/null and b/resources/documents/certificates/ClintSimiyu-October 2023 Cyb-certificate.pdf differ diff --git a/resources/js/portfolio.js b/resources/js/portfolio.js index 6c5fe92..61adf58 100644 --- a/resources/js/portfolio.js +++ b/resources/js/portfolio.js @@ -1,41 +1,3 @@ -// //create cursor element -// var cursor = document.createElement("iconify-icon"); -// cursor.setAttribute("icon", "gis:arrow-o"); -// cursor.setAttribute("width", "40"); -// cursor.setAttribute("height", "40"); -// cursor.classList.add("cursor"); -// document.body.appendChild(cursor); -// cursor.style.transform = "scale(0.9)"; - - -// //cursor hidden when mouse leaves window -// document.addEventListener("mouseleave", ()=>{ -// cursor.style.display = "none"; -// }); - -// //cursor follow mouse -// document.addEventListener("mousemove", (e)=>{ -// cursor.style.left = e.pageX + "px"; -// cursor.style.top = e.pageY + "px"; -// }); -// //cursor click animation -// document.addEventListener("mousedown", ()=>{ -// cursor.style.transform = "scale(0.7)"; -// }); -// document.addEventListener("mouseup", ()=>{ -// cursor.style.transform = "scale(0.9)"; -// }); -// //hide cursor when link is hovered -// var links = document.getElementsByTagName("a"); -// for (i=0; i{ -// cursor.style.display = "none"; -// }); -// links[i].addEventListener("mouseout", ()=>{ -// cursor.style.display = "block"; -// }); -// } - // Get the navbar var navbar = document.getElementById("topnavbar"); @@ -119,11 +81,12 @@ function displayProjects(){ var repos = response; for (i in repos){ var repo = repos[i]; + alert(repo); //Find image url in the repo by looking in the root directory for a file with the name project_img.png var img = "https://raw.githubusercontent.com/Clint171/"+repo.name+"/master/project_img.png"; //Check if the image exists var http = new XMLHttpRequest(); - http.open('HEAD', img, true); + http.open('HEAD', img, false); http.send(); //If the image does not exist, skip this repo if (http.status == 404){