From 363b8599c9a2eb6c5d74bee5ba145e37385df715 Mon Sep 17 00:00:00 2001 From: Adam French Date: Tue, 25 Nov 2025 22:07:00 +0000 Subject: [PATCH] omg finially cv works --- nginx/vue/index.html | 13 +--- nginx/vue/public/css/cv_styles.css | 91 ++++++++++++++++++++++++++- nginx/vue/public/css/cv_variables.css | 50 --------------- nginx/vue/public/css/fonts.css | 0 nginx/vue/public/css/styles.css | 36 ----------- 5 files changed, 92 insertions(+), 98 deletions(-) delete mode 100644 nginx/vue/public/css/cv_variables.css delete mode 100644 nginx/vue/public/css/fonts.css diff --git a/nginx/vue/index.html b/nginx/vue/index.html index cdbdd78..df2675c 100644 --- a/nginx/vue/index.html +++ b/nginx/vue/index.html @@ -1,19 +1,12 @@ - - - - - - - - + AF - +
diff --git a/nginx/vue/public/css/cv_styles.css b/nginx/vue/public/css/cv_styles.css index 74dcb68..b510c0f 100644 --- a/nginx/vue/public/css/cv_styles.css +++ b/nginx/vue/public/css/cv_styles.css @@ -1,3 +1,90 @@ +/* Fonts */ +/*@font-face { + font-family: "AldoTheApache"; + src: url("/fonts/AldotheApache.ttf") format("truetype"); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: "RobotFont"; + src: url("/fonts/Robot_Font.otf") format("opentype"); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: "m12"; + src: url("/fonts/m12.ttf") format("truetype"); + font-weight: normal; + font-style: normal; +}*/ + +@font-face { + font-family: "big_noodle_titling"; + src: url("/fonts/big_noodle_titling.ttf") format("truetype"); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: "CreatoDisplay"; + src: url("/fonts/CreatoDisplay-Bold.otf") format("opentype"); + font-weight: normal; + font-style: normal; +} + +/* Variables */ +* { + /* Blue - Beige */ + /* --primary: #153448; + --secondary: #3C5B6F; + --tertiary: #948979; + --quaternary: #f5bb78; + --background: #DFD0B8; */ + + /* Blue - Turqouise */ + /* --primary: #161D6F; + --secondary: #0B2F9F; + --tertiary: #98DED9; + --quaternary: #C7FFD8; + --background: #C2EFD1; */ + + /* Red - Blue */ + /* --primary: #ff204e; */ + /* --secondary: #a0153e; */ + /* --tertiary: #5d0341; */ + /* --quaternary: #3a0e41; */ + /* --background: #00224d; */ + + /* Blue - Brown */ + /* --primary: #35374B; */ + /* --secondary: #344955; */ + /* --tertiary: #50727b; */ + /* --quaternary: #78a083; */ + /* --background: #c7b077; */ + + /* Black - White */ + --primary: black; + --secondary: black; + --tertiary: black; + --quaternary: #cccccc; + --background: white; + + /* Blue - White */ + /* --primary: #201e43; */ + /* --secondary: #134b70; */ + /* --tertiary: #508c9b; */ + /* --quaternary: #cceeee; */ + /* --background: #eeeeee; */ + + --font-heading: big_noodle_titling; + --font-text: CreatoDisplay; + --font-size-text: 90%; + --font-size-heading: 2.5em; + --font-size-tableheading: 1.2em; +} + /* A5 Page */ .a5page { /* overflow: scroll; */ @@ -15,6 +102,7 @@ /* A4 Page */ .a4page { + line-height: 1.6; font-family: var(--font-text); width: 210mm; /* Standard A4 width */ @@ -37,7 +125,6 @@ body { flex-direction: column; justify-content: center; align-items: center; - line-height: 1.6; margin: 0; padding: 0; } @@ -84,7 +171,7 @@ td { th { border: 2px solid var(--tertiary); - padding: 1px 0px 1px 7px; + /*padding: 1px 0px 1px 7px;*/ font-family: var(--font-heading); font-size: var(--font-size-tableheading); background-color: var(--quaternary); diff --git a/nginx/vue/public/css/cv_variables.css b/nginx/vue/public/css/cv_variables.css deleted file mode 100644 index 9e9118d..0000000 --- a/nginx/vue/public/css/cv_variables.css +++ /dev/null @@ -1,50 +0,0 @@ -/* Variables */ -:root { - /* Blue - Beige */ - /* --primary: #153448; - --secondary: #3C5B6F; - --tertiary: #948979; - --quaternary: #f5bb78; - --background: #DFD0B8; */ - - /* Blue - Turqouise */ - /* --primary: #161D6F; - --secondary: #0B2F9F; - --tertiary: #98DED9; - --quaternary: #C7FFD8; - --background: #C2EFD1; */ - - /* Red - Blue */ - /* --primary: #ff204e; */ - /* --secondary: #a0153e; */ - /* --tertiary: #5d0341; */ - /* --quaternary: #3a0e41; */ - /* --background: #00224d; */ - - /* Blue - Brown */ - /* --primary: #35374B; */ - /* --secondary: #344955; */ - /* --tertiary: #50727b; */ - /* --quaternary: #78a083; */ - /* --background: #c7b077; */ - - /* Black - White */ - --primary: black; - --secondary: black; - --tertiary: black; - --quaternary: #cccccc; - --background: white; - - /* Blue - White */ - /* --primary: #201e43; */ - /* --secondary: #134b70; */ - /* --tertiary: #508c9b; */ - /* --quaternary: #cceeee; */ - /* --background: #eeeeee; */ - - --font-heading: big_noodle_titling; - --font-text: CreatoDisplay; - --font-size-text: 90%; - --font-size-heading: 2.5em; - --font-size-tableheading: 1.2em; -} diff --git a/nginx/vue/public/css/fonts.css b/nginx/vue/public/css/fonts.css deleted file mode 100644 index e69de29..0000000 diff --git a/nginx/vue/public/css/styles.css b/nginx/vue/public/css/styles.css index fe78407..faa977f 100644 --- a/nginx/vue/public/css/styles.css +++ b/nginx/vue/public/css/styles.css @@ -1,39 +1,3 @@ -/* Fonts */ -@font-face { - font-family: "AldoTheApache"; - src: url("/fonts/AldotheApache.ttf") format("truetype"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: "RobotFont"; - src: url("/fonts/Robot_Font.otf") format("opentype"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: "m12"; - src: url("/fonts/m12.ttf") format("truetype"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: "big_noodle_titling"; - src: url("/fonts/big_noodle_titling.ttf") format("truetype"); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: "CreatoDisplay"; - src: url("/fonts/CreatoDisplay-Bold.otf") format("opentype"); - font-weight: normal; - font-style: normal; -} - /* Printing */ @media print { .no-print {