From 8d282499bde3d256f3b549ee32f1c2307ac078a3 Mon Sep 17 00:00:00 2001 From: webfussel Date: Mon, 20 May 2024 21:10:23 +0200 Subject: [PATCH] ADD: Skills --- Globals.css | 18 ++++++++++---- app.vue | 1 + components/Header/Header.css | 27 +++++---------------- components/Header/Header.vue | 4 ++-- components/Intro/Intro.css | 2 +- components/Intro/Intro.vue | 2 +- components/Skills/Skills.css | 32 +++++++++++++++++++++++++ components/Skills/Skills.vue | 46 ++++++++++++++++++++++++++++++++++++ 8 files changed, 103 insertions(+), 29 deletions(-) create mode 100644 components/Skills/Skills.css create mode 100644 components/Skills/Skills.vue diff --git a/Globals.css b/Globals.css index 6081c86..acae070 100644 --- a/Globals.css +++ b/Globals.css @@ -7,8 +7,8 @@ } ::selection { - background: #6c5ce7; - color: #dfe6e9; + background: var(--color-orange); + color: var(--color-black); } ::-webkit-scrollbar { @@ -37,15 +37,18 @@ } :root { - --spacing-standard: 25px; + --spacing-standard: 3rem; --transition-time: 250ms; --radius-standard: 4px; --color-white: #ecf0f1; --color-white-transparent: rgba(236, 240, 241, 0.8); + --color-black: #2a2723; + --color-black-transparent: #2a2723aa; --color-orange: #ff9100; + --color-orange-black: #332b22; --color-red: #822419; --color-green: #236b40; @@ -104,6 +107,10 @@ h1, h2, h3, h4, h5, h6 { font-family: 'Roboto Condensed', sans-serif; } +h2 { + font-size: 4rem; +} + h3 { font-size: 1.5rem; } @@ -117,7 +124,6 @@ a { .content { position: relative; z-index: 100; - min-height: 100vh; padding: 150px 15vw; & h2 { @@ -125,6 +131,10 @@ a { } } +.full { + min-height: 100vh; +} + .z-0 { box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 0); } diff --git a/app.vue b/app.vue index b9e4ab4..d9d995a 100644 --- a/app.vue +++ b/app.vue @@ -4,6 +4,7 @@
+