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