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 @@