From 0ab48b209948bb92c7d4a69e5527ccbe4ab1edbd Mon Sep 17 00:00:00 2001 From: Kamil Dybicz Date: Thu, 30 Nov 2023 13:37:42 +0100 Subject: [PATCH 1/7] poc --- Makefile | 2 +- _layouts/default.html | 127 +++++++++++++++++++++++++++--- assets/css/animations.css | 23 ------ assets/css/main.css | 157 ++++++++++++++++++++++++++++++++++++++ index.html | 122 +++++++++++++++++------------ 5 files changed, 348 insertions(+), 83 deletions(-) create mode 100644 assets/css/main.css diff --git a/Makefile b/Makefile index dad3091..0ace8d3 100644 --- a/Makefile +++ b/Makefile @@ -4,4 +4,4 @@ setup: bundle install start: - bundle exec jekyll serve + bundle exec jekyll serve --host 0.0.0.0 diff --git a/_layouts/default.html b/_layouts/default.html index 57017e1..04a1fa8 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -9,29 +9,134 @@ {{ site.title }} - - + - - + - + - {{ content }} + - {% include footer.html %} +
- +
+

+ Partners +

+
    +
  • + +
    +

    + It's an e-commerce portal providing exclusive rates for luxury hotels + and holidays in the UK and abroad. Good knowledge about social media, + tracking and understanding users' behaviors, development and + maintenance of heavily loaded website as keys to success. +

    +
      +
    • Languages: Groovy, JS, Less
    • +
    • Technologies: Grails, KnockoutJS, JQuery, Spock
    • +
    • Databases: MySQL, MongoDB
    • +
    • + Other: TDD, Git, Jenkins, Amazon S3, Social Media APIs (Facebook, + Twitter, Google+), Jira +
    • +
    +
    +
  • + +
  • + +
    +

    + Development and maintenance of a existing SEPA Payments batch + processing engine for handling very large XML files in inter-bank + exchange as well as supported the development of a UI application for + the end users. +

    +
      +
    • Languages: J2EE 5
    • +
    • + Technologies: Spring 2/3, Hibernate 3.x, Struts 1, ION, Selenium, + JMS +
    • +
    • Databases: Oracle
    • +
    • + Other: JBOSS AS 4, XML, JSP, maven, SVN, Jenkins, Jira, Jabber +
    • +
    +
    +
  • + +
  • + +
    +

    + All kinds of PKI solutions developed for Java SE, J2EE, Java applets + and Android devices. +

    +
      +
    • Languages: J2EE 4/5, JSE5/6/7, Android
    • +
    • Technologies: EJB, Hibernate, Selenium
    • +
    • Databases: Oracle, PostgreSQL
    • +
    • Other: JBOSS AS 4/5, XML, JSP, Ant, SVN, Jira, Bamboo, Jabber
    • +
    +
    +
  • +
+ +
+ +
+

+ Where to find me +

+ +
+ + + + + + + + + + + +
+
+ +
+ + diff --git a/assets/css/animations.css b/assets/css/animations.css index bcac6e0..965f540 100644 --- a/assets/css/animations.css +++ b/assets/css/animations.css @@ -141,26 +141,3 @@ .bounceInRight { animation: 2s bounceInRight ease-out; } - -/* https://www.youtube.com/watch?v=345V2MU3E_w */ -img { - max-width: 100%; - height: auto; - vertical-align: middle; - font-style: italic; - background-repeat: no-repeat; - background-size: cover; - shape-margin: 1rem; -} - -.banner { - min-height: 100vh; - min-height: 100svh; - background-size: cover; - background-image: url(/assets/images/header.webp), url(/assets/images/header-lores.jpg); - background-color: rgb(0, 102, 191); -} - -.page-title { - background-image: linear-gradient(to bottom, rgba(0, 102, 191, 0) 0%, rgba(0, 102, 191, 0.6) 35% 75%, rgba(0, 102, 191, 0) 100%); -} diff --git a/assets/css/main.css b/assets/css/main.css new file mode 100644 index 0000000..3bbc5e1 --- /dev/null +++ b/assets/css/main.css @@ -0,0 +1,157 @@ +@import "animations.css"; + +:root { + --av-accent-color: #0d6efd; + + --av-banner-text-color: rgb(248, 249, 250); + --av-banner-background-color: rgb(0, 102, 191); + + --av-text-color: #212529; + + + + --av-background-color: #fff; +} + + +/* https://www.youtube.com/watch?v=345V2MU3E_w */ +img { + max-width: 100%; + height: auto; + vertical-align: middle; + font-style: italic; + background-repeat: no-repeat; + background-size: cover; + shape-margin: 1rem; +} + +body { + margin: 0; + + background-color: var(--av-background-color); + color: var(--av-text-color); + font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; + font-size: 1rem; + font-weight: 300; +} + +.banner { + min-height: 100vh; + min-height: 100svh; + background-size: cover; + background-image: url(/assets/images/header.webp), url(/assets/images/header-lores.jpg); + background-color: var(--av-banner-background-color); + + display: flex; + justify-content: center; + flex-direction: column; + text-align: center; +} + +.title-wrapper { + padding: 3rem 0; + + background-image: linear-gradient( + to bottom, + rgba(255, 255, 255, 0) 0%, + rgba(0, 102, 191, 0.5) 35% 75%, + rgba(255, 255, 255, 0) 100% + ); +} + +.site-title { + margin: 0; + color: var(--av-banner-text-color); + font-size: 5rem; + font-weight: 400; +} + +.site-description { + margin: 0; + color: var(--av-banner-text-color); + font-size: 1.3rem; + font-weight: 300; +} + +.wrapper { + max-width: 85%; + margin: 0 auto; +} + +.section { + padding-top: 2rem; +} + +.section-title { + font-size: 2.5rem; + font-weight: 500; + text-align: center; + margin: 0 0 0 0; +} + +.partner { + display: flex; + justify-content: center; + flex-direction: row; + gap: 2rem; + + padding-top: 2rem; + padding-bottom: 1rem; + + font-size: 1.25rem; + line-height: 30px; +} + +.partner:last-child { + padding-bottom: 0; +} + +@media screen and (max-width: 650px){ + .partner { + flex-direction: column; + } +} + +.partner .logo { + flex-grow: 0; + flex-shrink: 0; + align-self: center; +} + +.partner .lead { + margin-top: 0; +} + +.partner .description { + flex-grow: 1; +} + +li { + list-style-type: disc; +} + +.contact-methods { + display: flex; + justify-content: center; + flex-direction: row; + text-align: center; + gap: 1rem; + + padding-top: 2rem; +} + +.contact-methods .link { + color: var(--av-accent-color); +} + +.footer { + height: 4rem; + + padding-top: 2rem; + display: flex; + justify-content: center; + flex-direction: column; + text-align: center; + + font-weight: 400; +} diff --git a/index.html b/index.html index a949270..5be7d84 100644 --- a/index.html +++ b/index.html @@ -4,18 +4,11 @@ --- @@ -29,73 +22,92 @@

Partners

-
-
+
+

- It's an e-commerce portal providing exclusive rates for luxury hotels and holidays in the - UK and abroad. Good knowledge about social media, tracking and understanding users' behaviors, - development and maintenance of heavily loaded website as keys to success. + It's an e-commerce portal providing exclusive rates for luxury hotels + and holidays in the UK and abroad. Good knowledge about social media, + tracking and understanding users' behaviors, development and + maintenance of heavily loaded website as keys to success.

  • Languages: Groovy, JS, Less
  • Technologies: Grails, KnockoutJS, JQuery, Spock
  • Databases: MySQL, MongoDB
  • -
  • Other: TDD, Git, Jenkins, Amazon S3, Social Media APIs (Facebook, Twitter, Google+), Jira
  • +
  • + Other: TDD, Git, Jenkins, Amazon S3, Social Media APIs (Facebook, + Twitter, Google+), Jira +
-
-
+ -
-
+

- Development and maintenance of a existing SEPA Payments batch processing - engine for handling very large XML files in inter-bank exchange as well as - supported the development of a UI application for the end users. + Development and maintenance of a existing SEPA Payments batch + processing engine for handling very large XML files in inter-bank + exchange as well as supported the development of a UI application for + the end users.

  • Languages: J2EE 5
  • -
  • Technologies: Spring 2/3, Hibernate 3.x, Struts 1, ION, Selenium, JMS
  • +
  • + Technologies: Spring 2/3, Hibernate 3.x, Struts 1, ION, Selenium, + JMS +
  • Databases: Oracle
  • -
  • Other: JBOSS AS 4, XML, JSP, maven, SVN, Jenkins, Jira, Jabber
  • +
  • + Other: JBOSS AS 4, XML, JSP, maven, SVN, Jenkins, Jira, Jabber +
-
-
+ -
-
+

- All kinds of PKI solutions developed for Java SE, J2EE, Java applets and Android devices. + All kinds of PKI solutions developed for Java SE, J2EE, Java applets + and Android devices.

  • Languages: J2EE 4/5, JSE5/6/7, Android
  • @@ -105,9 +117,8 @@

    Partners

-
-
- + +
@@ -117,20 +128,35 @@

Where to find me

-
+

- + - + - +

From ec55d747b5bc75fa6f1719b7e1ddbd3fc801676e Mon Sep 17 00:00:00 2001 From: Kamil Dybicz Date: Thu, 30 Nov 2023 15:53:50 +0100 Subject: [PATCH 2/7] cleanup --- _layouts/default.html | 94 ++++++++++++++--------------- assets/css/animations.css | 124 ++++++-------------------------------- assets/css/main.css | 54 +++++++++++------ 3 files changed, 101 insertions(+), 171 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index 04a1fa8..478aedb 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -23,8 +23,8 @@ @@ -43,23 +43,21 @@

/>

-
-

- It's an e-commerce portal providing exclusive rates for luxury hotels - and holidays in the UK and abroad. Good knowledge about social media, - tracking and understanding users' behaviors, development and - maintenance of heavily loaded website as keys to success. -

-
    -
  • Languages: Groovy, JS, Less
  • -
  • Technologies: Grails, KnockoutJS, JQuery, Spock
  • -
  • Databases: MySQL, MongoDB
  • -
  • - Other: TDD, Git, Jenkins, Amazon S3, Social Media APIs (Facebook, - Twitter, Google+), Jira -
  • -
-
+

+ It's an e-commerce portal providing exclusive rates for luxury hotels + and holidays in the UK and abroad. Good knowledge about social media, + tracking and understanding users' behaviors, development and + maintenance of heavily loaded website as keys to success. +

+
    +
  • Languages: Groovy, JS, Less
  • +
  • Technologies: Grails, KnockoutJS, JQuery, Spock
  • +
  • Databases: MySQL, MongoDB
  • +
  • + Other: TDD, Git, Jenkins, Amazon S3, Social Media APIs (Facebook, + Twitter, Google+), Jira +
  • +
  • @@ -68,25 +66,23 @@

    Sentenial

  • -
    -

    - Development and maintenance of a existing SEPA Payments batch - processing engine for handling very large XML files in inter-bank - exchange as well as supported the development of a UI application for - the end users. -

    -
      -
    • Languages: J2EE 5
    • -
    • - Technologies: Spring 2/3, Hibernate 3.x, Struts 1, ION, Selenium, - JMS -
    • -
    • Databases: Oracle
    • -
    • - Other: JBOSS AS 4, XML, JSP, maven, SVN, Jenkins, Jira, Jabber -
    • -
    -
    +

    + Development and maintenance of a existing SEPA Payments batch + processing engine for handling very large XML files in inter-bank + exchange as well as supported the development of a UI application for + the end users. +

    +
      +
    • Languages: J2EE 5
    • +
    • + Technologies: Spring 2/3, Hibernate 3.x, Struts 1, ION, Selenium, + JMS +
    • +
    • Databases: Oracle
    • +
    • + Other: JBOSS AS 4, XML, JSP, maven, SVN, Jenkins, Jira, Jabber +
    • +
  • @@ -95,18 +91,16 @@

    Unizeto Technologies

  • -
    -

    - All kinds of PKI solutions developed for Java SE, J2EE, Java applets - and Android devices. -

    -
      -
    • Languages: J2EE 4/5, JSE5/6/7, Android
    • -
    • Technologies: EJB, Hibernate, Selenium
    • -
    • Databases: Oracle, PostgreSQL
    • -
    • Other: JBOSS AS 4/5, XML, JSP, Ant, SVN, Jira, Bamboo, Jabber
    • -
    -
    +

    + All kinds of PKI solutions developed for Java SE, J2EE, Java applets + and Android devices. +

    + diff --git a/assets/css/animations.css b/assets/css/animations.css index 965f540..d218ce3 100644 --- a/assets/css/animations.css +++ b/assets/css/animations.css @@ -1,143 +1,59 @@ -@-webkit-keyframes bounceInDown { - 0%,60%,75%,90%,to { - -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1); - animation-timing-function: cubic-bezier(.215,.61,.355,1) - } - +@-webkit-keyframes slide-in-down { 0% { opacity: 0; - -webkit-transform: translate3d(0,-3000px,0); - transform: translate3d(0,-3000px,0) - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0,25px,0); - transform: translate3d(0,25px,0) - } - - 75% { - -webkit-transform: translate3d(0,-10px,0); - transform: translate3d(0,-10px,0) - } - - 90% { - -webkit-transform: translate3d(0,5px,0); - transform: translate3d(0,5px,0) + -webkit-transform: translate3d(0,-90px,0); + transform: translate3d(0,-90px,0); } to { -webkit-transform: none; - transform: none + transform: none; } } -@keyframes bounceInDown { - 0%,60%,75%,90%,to { - -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1); - animation-timing-function: cubic-bezier(.215,.61,.355,1) - } - +@keyframes slide-in-down { 0% { opacity: 0; - -webkit-transform: translate3d(0,-3000px,0); - transform: translate3d(0,-3000px,0) - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0,25px,0); - transform: translate3d(0,25px,0) - } - - 75% { - -webkit-transform: translate3d(0,-10px,0); - transform: translate3d(0,-10px,0) - } - - 90% { - -webkit-transform: translate3d(0,5px,0); - transform: translate3d(0,5px,0) + -webkit-transform: translate3d(0,-90px,0); + transform: translate3d(0,-90px,0); } to { -webkit-transform: none; - transform: none + transform: none; } } -.bounceInDown { - animation: 2s bounceInDown ease-out; +.slide-in-down { + animation: .6s slide-in-down; } -@-webkit-keyframes bounceInRight { - 0%,60%,75%,90%,to { - -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1); - animation-timing-function: cubic-bezier(.215,.61,.355,1) - } - +@-webkit-keyframes slide-in-left { 0% { opacity: 0; - -webkit-transform: translate3d(3000px,0,0); - transform: translate3d(3000px,0,0) - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(-25px,0,0); - transform: translate3d(-25px,0,0) - } - - 75% { - -webkit-transform: translate3d(10px,0,0); - transform: translate3d(10px,0,0) - } - - 90% { - -webkit-transform: translate3d(-5px,0,0); - transform: translate3d(-5px,0,0) + -webkit-transform: translate3d(50px,0,0); + transform: translate3d(50px,0,0); } to { -webkit-transform: none; - transform: none + transform: none; } } -@keyframes bounceInRight { - 0%,60%,75%,90%,to { - -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1); - animation-timing-function: cubic-bezier(.215,.61,.355,1) - } - +@keyframes slide-in-left { 0% { opacity: 0; - -webkit-transform: translate3d(3000px,0,0); - transform: translate3d(3000px,0,0) - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(-25px,0,0); - transform: translate3d(-25px,0,0) - } - - 75% { - -webkit-transform: translate3d(10px,0,0); - transform: translate3d(10px,0,0) - } - - 90% { - -webkit-transform: translate3d(-5px,0,0); - transform: translate3d(-5px,0,0) + -webkit-transform: translate3d(50px,0,0); + transform: translate3d(50px,0,0); } to { -webkit-transform: none; - transform: none + transform: none; } } -.bounceInRight { - animation: 2s bounceInRight ease-out; +.slide-in-left { + animation: .75s slide-in-left; } diff --git a/assets/css/main.css b/assets/css/main.css index 3bbc5e1..9f6c8d0 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -8,8 +8,6 @@ --av-text-color: #212529; - - --av-background-color: #fff; } @@ -45,7 +43,6 @@ body { display: flex; justify-content: center; flex-direction: column; - text-align: center; } .title-wrapper { @@ -57,19 +54,27 @@ body { rgba(0, 102, 191, 0.5) 35% 75%, rgba(255, 255, 255, 0) 100% ); + + text-align: center; + text-align: -webkit-center; + text-align: -moz-center; } .site-title { margin: 0; + width: fit-content; + color: var(--av-banner-text-color); - font-size: 5rem; + font-size: calc(1.625rem + 4.5vw); font-weight: 400; } .site-description { margin: 0; + width: fit-content; + color: var(--av-banner-text-color); - font-size: 1.3rem; + font-size: calc(.5rem + 1vw); font-weight: 300; } @@ -83,18 +88,26 @@ body { } .section-title { - font-size: 2.5rem; + font-size: calc(1.375rem + 1.5vw); font-weight: 500; text-align: center; - margin: 0 0 0 0; + margin: 0; +} + +.partner-list { + padding: 0; } .partner { - display: flex; - justify-content: center; - flex-direction: row; + display: grid; + grid-template-areas: + "logo lead" + "logo skills"; + grid-template-columns: minmax(100px, 300px) auto; gap: 2rem; + justify-items: center; + padding-top: 2rem; padding-bottom: 1rem; @@ -106,24 +119,31 @@ body { padding-bottom: 0; } -@media screen and (max-width: 650px){ +@media screen and (max-width: 750px){ .partner { - flex-direction: column; + grid-template-areas: "logo" "lead" "skills"; + grid-template-columns: auto; + } + + .wrapper { + max-width: 95%; } } .partner .logo { - flex-grow: 0; - flex-shrink: 0; + grid-area: logo; align-self: center; } .partner .lead { - margin-top: 0; + grid-area: lead; + margin: 0; + place-self: baseline; } -.partner .description { - flex-grow: 1; +.partner .skills { + grid-area: skills; + place-self: baseline; } li { From 432c83a22dcd1cff47589b22024d931e78a4f88f Mon Sep 17 00:00:00 2001 From: Kamil Dybicz Date: Thu, 30 Nov 2023 16:03:33 +0100 Subject: [PATCH 3/7] Update default.html --- _layouts/default.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index 478aedb..d05daa3 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -15,7 +15,7 @@ - + @@ -113,7 +113,7 @@

    - + From 703308be85959ea60f3e2602561094fc4d0b08dd Mon Sep 17 00:00:00 2001 From: Kamil Dybicz Date: Thu, 30 Nov 2023 16:08:00 +0100 Subject: [PATCH 4/7] cleanup --- _includes/footer.html | 14 +--- _layouts/default.html | 112 +--------------------------- index.html | 170 ++++++++++++++---------------------------- 3 files changed, 61 insertions(+), 235 deletions(-) diff --git a/_includes/footer.html b/_includes/footer.html index 78fc9a6..74aad64 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,11 +1,3 @@ -
    -
    -
    -
    -
    - © 2012-{{ 'now' | date: "%Y" }} {{ site.title }} -
    -
    -
    -
    -
    +
    + © 2012-{{ 'now' | date: "%Y" }} {{ site.title }} +
    diff --git a/_layouts/default.html b/_layouts/default.html index d05daa3..0a0bc71 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -20,117 +20,9 @@ + {{ content }} - - -
    - -
    -

    - Partners -

    - -
      -
    • - -

      - It's an e-commerce portal providing exclusive rates for luxury hotels - and holidays in the UK and abroad. Good knowledge about social media, - tracking and understanding users' behaviors, development and - maintenance of heavily loaded website as keys to success. -

      -
        -
      • Languages: Groovy, JS, Less
      • -
      • Technologies: Grails, KnockoutJS, JQuery, Spock
      • -
      • Databases: MySQL, MongoDB
      • -
      • - Other: TDD, Git, Jenkins, Amazon S3, Social Media APIs (Facebook, - Twitter, Google+), Jira -
      • -
      -
    • - -
    • - -

      - Development and maintenance of a existing SEPA Payments batch - processing engine for handling very large XML files in inter-bank - exchange as well as supported the development of a UI application for - the end users. -

      -
        -
      • Languages: J2EE 5
      • -
      • - Technologies: Spring 2/3, Hibernate 3.x, Struts 1, ION, Selenium, - JMS -
      • -
      • Databases: Oracle
      • -
      • - Other: JBOSS AS 4, XML, JSP, maven, SVN, Jenkins, Jira, Jabber -
      • -
      -
    • - -
    • - -

      - All kinds of PKI solutions developed for Java SE, J2EE, Java applets - and Android devices. -

      -
        -
      • Languages: J2EE 4/5, JSE5/6/7, Android
      • -
      • Technologies: EJB, Hibernate, Selenium
      • -
      • Databases: Oracle, PostgreSQL
      • -
      • Other: JBOSS AS 4/5, XML, JSP, Ant, SVN, Jira, Bamboo, Jabber
      • -
      -
    • -
    - -
    - -
    -

    - Where to find me -

    - -
    - - - - - - - - - - - -
    -
    - -
    - -
    - © 2012-{{ 'now' | date: "%Y" }} {{ site.title }} -
    + {% include footer.html %} diff --git a/index.html b/index.html index 5be7d84..7e707bd 100644 --- a/index.html +++ b/index.html @@ -3,47 +3,34 @@ permalink: / --- - -
    -
    -
    -
    -

    Partners

    -
    -
    +
    + + +
    -
    -
    -
    -
    - - Secret Escapes - -
    -
    +
    +

    Partners

    + +
      +
    • +

      It's an e-commerce portal providing exclusive rates for luxury hotels and holidays in the UK and abroad. Good knowledge about social media, tracking and understanding users' behaviors, development and maintenance of heavily loaded website as keys to success.

      -
        +
        • Languages: Groovy, JS, Less
        • Technologies: Grails, KnockoutJS, JQuery, Spock
        • Databases: MySQL, MongoDB
        • @@ -52,31 +39,21 @@

          Partners

          Twitter, Google+), Jira
        -
    -
    -
    + -
    -
    -
    - - Sentenial - -
    -
    +
  • +

    Development and maintenance of a existing SEPA Payments batch processing engine for handling very large XML files in inter-bank exchange as well as supported the development of a UI application for the end users.

    -
      +
      • Languages: J2EE 5
      • Technologies: Spring 2/3, Hibernate 3.x, Struts 1, ION, Selenium, @@ -87,80 +64,45 @@

        Partners

        Other: JBOSS AS 4, XML, JSP, maven, SVN, Jenkins, Jira, Jabber
      -
  • -
    -
    + -
    -
    -
    - - Unizeto Technologies - -
    -
    +
  • +

    All kinds of PKI solutions developed for Java SE, J2EE, Java applets and Android devices.

    -
      +
      • Languages: J2EE 4/5, JSE5/6/7, Android
      • Technologies: EJB, Hibernate, Selenium
      • Databases: Oracle, PostgreSQL
      • Other: JBOSS AS 4/5, XML, JSP, Ant, SVN, Jira, Bamboo, Jabber
      -
  • -
    -
    -
    + + -
    -
    -
    -
    -

    Where to find me

    -
    -
    -
    -
    +

    -
    -
    -
    -
    -

    - - - - - - - - - -

    -
    +
    +

    Where to find me

    + + -
    -
    + + + From a3851e17c387be3ccb75a34b03271b4f474b641f Mon Sep 17 00:00:00 2001 From: Kamil Dybicz Date: Thu, 30 Nov 2023 16:18:05 +0100 Subject: [PATCH 5/7] Update index.html --- index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.html b/index.html index 7e707bd..1e0a631 100644 --- a/index.html +++ b/index.html @@ -20,8 +20,7 @@

    Partners

  • From c80b95973ca54f4f9708ce851edacbc68c8b28e0 Mon Sep 17 00:00:00 2001 From: Kamil Dybicz Date: Thu, 30 Nov 2023 16:39:03 +0100 Subject: [PATCH 6/7] cleanup --- assets/css/main.css | 15 +++++---------- assets/js/animations.js | 0 2 files changed, 5 insertions(+), 10 deletions(-) delete mode 100644 assets/js/animations.js diff --git a/assets/css/main.css b/assets/css/main.css index 9f6c8d0..f4091f9 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -2,16 +2,13 @@ :root { --av-accent-color: #0d6efd; - - --av-banner-text-color: rgb(248, 249, 250); - --av-banner-background-color: rgb(0, 102, 191); - - --av-text-color: #212529; - --av-background-color: #fff; + --av-text-color: #212529; + + --av-banner-background-color: #0066bf; + --av-banner-text-color: #f8f9fa; } - /* https://www.youtube.com/watch?v=345V2MU3E_w */ img { max-width: 100%; @@ -100,9 +97,7 @@ body { .partner { display: grid; - grid-template-areas: - "logo lead" - "logo skills"; + grid-template-areas: "logo lead" "logo skills"; grid-template-columns: minmax(100px, 300px) auto; gap: 2rem; diff --git a/assets/js/animations.js b/assets/js/animations.js deleted file mode 100644 index e69de29..0000000 From 012b97f7506dcfea2d7d563c797a00e4493f9fa4 Mon Sep 17 00:00:00 2001 From: Kamil Dybicz Date: Thu, 30 Nov 2023 16:41:09 +0100 Subject: [PATCH 7/7] cleanup --- _includes/header.html | 11 +++++------ index.html | 7 +------ 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/_includes/header.html b/_includes/header.html index 36482bf..f15141e 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -1,7 +1,6 @@ -

    + diff --git a/index.html b/index.html index 1e0a631..618b17b 100644 --- a/index.html +++ b/index.html @@ -4,12 +4,7 @@ --- - +{% include header.html %}