diff --git a/src/App.vue b/src/App.vue index 442142c0..80bf2ca9 100644 --- a/src/App.vue +++ b/src/App.vue @@ -20,6 +20,12 @@ export default { @import '../src/styles/global-styles.scss'; @import '../src/styles/color-pallet.scss'; +body { + background: $background; + margin: 0; + padding: 0; +} + #app { .footer { text-align: center; diff --git a/src/assets/Inconsolata-Light.ttf b/src/assets/Inconsolata-Light.ttf new file mode 100644 index 00000000..2ce18429 Binary files /dev/null and b/src/assets/Inconsolata-Light.ttf differ diff --git a/src/assets/Inconsolata-Variable.ttf b/src/assets/Inconsolata-Variable.ttf new file mode 100644 index 00000000..20251d93 Binary files /dev/null and b/src/assets/Inconsolata-Variable.ttf differ diff --git a/src/components/Collapsable.vue b/src/components/Collapsable.vue index 37748029..dda36ec9 100644 --- a/src/components/Collapsable.vue +++ b/src/components/Collapsable.vue @@ -9,7 +9,7 @@ tabIndex="-1" >
@@ -102,14 +102,14 @@ export default { .lbl-toggle { display: block; - padding: 1rem; + padding: 0.25rem; cursor: pointer; border-radius: 7px; transition: all 0.25s ease-out; text-align: left; color:$bg-with-opacity; - h2 { + h3 { margin: 0; padding: 0; display: inline; diff --git a/src/components/Item.vue b/src/components/Item.vue index be95d308..137bd28b 100644 --- a/src/components/Item.vue +++ b/src/components/Item.vue @@ -52,22 +52,20 @@ export default { if (isOverflowing) { tileElem.className += ' is-overflowing'; } - } + } // Not from present me to past me: WTF?! }, }; - diff --git a/src/components/PageTitle.vue b/src/components/PageTitle.vue index 70ee39fe..80aef00c 100644 --- a/src/components/PageTitle.vue +++ b/src/components/PageTitle.vue @@ -1,7 +1,7 @@ diff --git a/src/styles/color-pallet.scss b/src/styles/color-pallet.scss index e32a1317..93507914 100644 --- a/src/styles/color-pallet.scss +++ b/src/styles/color-pallet.scss @@ -2,10 +2,11 @@ /* Core Pallet */ $background: #0b1021; -$ascent: #0875c3; +$ascent: #5cabca; /* Action Colors */ $transparent-black: #0000008a; +$overflow-ellipse: #283e51; /* Modified Colors */ $bg-with-opacity: rgba($background, 0.8); diff --git a/src/styles/global-styles.scss b/src/styles/global-styles.scss index b187870e..c1453641 100644 --- a/src/styles/global-styles.scss +++ b/src/styles/global-styles.scss @@ -1,22 +1,23 @@ -@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap'); +@font-face { + font-family: 'Inconsolata'; + src: url('./assets/Inconsolata-Light.ttf'); +} + html { margin: 0; padding: 0; } body { - margin: 0; - padding: 0; - background: #282a32; - font-family: 'Montserrat', sans-serif; + font-family: 'Inconsolata', sans-serif; } h1, h2, h3, h4, h5 { - font-family: 'Montserrat', sans-serif; + font-family: 'Inconsolata', sans-serif; } p, a, span, div, input { - font-family: 'Montserrat', sans-serif; + font-family: 'Inconsolata', sans-serif; } \ No newline at end of file