diff --git a/nginx/vue/src/js/utils.js b/nginx/vue/src/js/utils.js
index 9928841..c558a7f 100644
--- a/nginx/vue/src/js/utils.js
+++ b/nginx/vue/src/js/utils.js
@@ -6,3 +6,12 @@ export function shuffleArray(array) {
array[j] = temp;
}
}
+
+export function getRandomColor() {
+ var letters = "0123456789ABCDEF";
+ var color = "#";
+ for (var i = 0; i < 6; i++) {
+ color += letters[Math.floor(Math.random() * 16)];
+ }
+ return color;
+}
diff --git a/nginx/vue/src/views/CV.vue b/nginx/vue/src/views/CV.vue
index 8a85a84..3b1a787 100644
--- a/nginx/vue/src/views/CV.vue
+++ b/nginx/vue/src/views/CV.vue
@@ -15,9 +15,10 @@
Recently graduated from the University of Leeds with a BSc
Computer Science with Mathematics (International) degree.
- Currently self-studying Complex Analysis and
- "An Introduction to Statistical Learning". Also building
- personal projects aligned with the type of roles I am seeking.
+ Currently self-studying and building projects aligned with the
+ type of roles I am seeking. I have a strong background across a
+ variety of programming languages and will be able to quickly get
+ on board with any codebase.
I am most keen to work for a company with altruistic values and
@@ -71,8 +72,8 @@
C++, Soldering, Embedded Systems |
2022 - 2025 |
- Created room decorations using salvaged components
- from discarded electronics.
+ Created decorations using salvaged components from
+ discarded electronics.
|
@@ -401,6 +402,7 @@
--font-text: CreatoDisplay;
--font-size-text: 90%;
--font-size-heading: 2.5em;
+ --font-size-subheading: 1.5em;
--font-size-tableheading: 1.2em;
}
@@ -469,6 +471,7 @@ h2 {
margin: 0px;
margin-bottom: 3px;
border-bottom: 1px solid var(--primary);
+ font-size: var(--font-size-subheading);
}
p {
diff --git a/nginx/vue/src/views/home/Home.vue b/nginx/vue/src/views/home/Home.vue
index bc81e29..aaf2c37 100644
--- a/nginx/vue/src/views/home/Home.vue
+++ b/nginx/vue/src/views/home/Home.vue
@@ -1,5 +1,6 @@