From e43366566efc2dcb0137bc4996863a0af5d45c47 Mon Sep 17 00:00:00 2001 From: webfussel Date: Tue, 21 May 2024 12:01:11 +0200 Subject: [PATCH] ADD: projects --- Globals.css | 21 +++++++ app.vue | 1 + components/Button/Button.css | 3 +- components/Customers/Customers.vue | 4 +- components/Services/Services.css | 43 +++++++++++++++ components/Services/Services.vue | 88 ++++++++++++++++++++++++++++++ components/Skills/Skills.css | 8 --- components/Skills/Skills.vue | 3 +- 8 files changed, 159 insertions(+), 12 deletions(-) create mode 100644 components/Services/Services.css create mode 100644 components/Services/Services.vue diff --git a/Globals.css b/Globals.css index 1a4cf9c..af59b09 100644 --- a/Globals.css +++ b/Globals.css @@ -126,6 +126,27 @@ span.highlight { color: var(--color-orange); } +span.chip { + background: var(--color-orange); + border-radius: 999px; + font-size: 1rem; + color: var(--color-black); + height: max-content; + padding: .5em 1em; +} + +.card { + padding: 2rem; + background: var(--color-black); + border-radius: 20px; + min-width: 300px; + flex: 1; +} + +.color-icon { + filter: invert(50%) sepia(84%) saturate(868%) hue-rotate(1deg) brightness(103%) contrast(100%); +} + .content { position: relative; z-index: 100; diff --git a/app.vue b/app.vue index bfc6e3b..bb1c5f6 100644 --- a/app.vue +++ b/app.vue @@ -6,6 +6,7 @@ + diff --git a/components/Skills/Skills.css b/components/Skills/Skills.css index 2a188ae..05d1ade 100644 --- a/components/Skills/Skills.css +++ b/components/Skills/Skills.css @@ -8,14 +8,6 @@ flex-wrap: wrap; } - & article { - padding: 2rem; - background: var(--color-black); - border-radius: 20px; - min-width: 300px; - flex: 1; - } - & .bottom { align-items: center; } diff --git a/components/Skills/Skills.vue b/components/Skills/Skills.vue index 641639d..9310a20 100644 --- a/components/Skills/Skills.vue +++ b/components/Skills/Skills.vue @@ -3,8 +3,9 @@