From 8bc9bdfc200c93e29886d27a94432fad0207db7e Mon Sep 17 00:00:00 2001 From: lukas Date: Sun, 26 Apr 2020 21:05:00 +0200 Subject: [PATCH] clickable company labels js reformat ci rename --- .gitlab-ci.yml | 3 +-- css/experience.css | 4 ++++ index.html | 9 +++++---- js/index.js | 5 +++-- 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f23c0b7..ca53de3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,4 @@ -test: +check_html: image: 18fgsa/html-proofer:gitlab-ci script: - - ls -la - htmlproofer ./ --empty-alt-ignore \ No newline at end of file diff --git a/css/experience.css b/css/experience.css index d7f1ca5..74ab1a9 100644 --- a/css/experience.css +++ b/css/experience.css @@ -86,6 +86,10 @@ color: #74f9d4; } +.companyname:hover{ + color: #74f9d0; +} + .experienceworktext { margin-top: 5mm; font-size: large; diff --git a/index.html b/index.html index 38cbdf9..c746a42 100644 --- a/index.html +++ b/index.html @@ -142,7 +142,7 @@
- Software engineer @Profactor + Software engineer @Profactor
extramural research institute @@ -160,7 +160,7 @@
- Electrician @SPS Technik + Electrician @SPS Technik
automation technology @@ -175,7 +175,8 @@
- Software and electronics engineer @Profactor + Software and electronics engineer + @Profactor
extramural research institute @@ -190,7 +191,7 @@
- plumber & maintenance worker @Klausriegler + plumber & maintenance worker @Klausriegler
Heating-Ventilation-Climate-Sanitary diff --git a/js/index.js b/js/index.js index e586c51..a0f0cf0 100644 --- a/js/index.js +++ b/js/index.js @@ -18,9 +18,10 @@ $(function () { $("#section3").inViewport(function (px) { if (px) { $("#experienceheader").addClass("animationappear600ms"); - $("#experiencecontentcontainer").addClass("animationappear300ms"); - $("#experiencecontentcontainer").addClass("experiencecontaineranimation"); + const expcontainer = $("#experiencecontentcontainer"); + expcontainer.addClass("animationappear300ms"); + expcontainer.addClass("experiencecontaineranimation"); } });