diff --git a/src/routes/zhen/CVs/Comps/AlexWatermark.svelte b/src/routes/zhen/CVs/Comps/AlexWatermark.svelte
new file mode 100644
index 0000000..445775b
--- /dev/null
+++ b/src/routes/zhen/CVs/Comps/AlexWatermark.svelte
@@ -0,0 +1,19 @@
+
+ ALEX
+
+
+
diff --git a/src/routes/zhen/CVs/Comps/BottomRightDecor.svelte b/src/routes/zhen/CVs/Comps/BottomRightDecor.svelte
new file mode 100644
index 0000000..b1aa6c8
--- /dev/null
+++ b/src/routes/zhen/CVs/Comps/BottomRightDecor.svelte
@@ -0,0 +1,33 @@
+
+
+
\ No newline at end of file
diff --git a/src/routes/zhen/CVs/Comps/LeftTopDecor.svelte b/src/routes/zhen/CVs/Comps/LeftTopDecor.svelte
new file mode 100644
index 0000000..4e1195b
--- /dev/null
+++ b/src/routes/zhen/CVs/Comps/LeftTopDecor.svelte
@@ -0,0 +1,33 @@
+
+
+
\ No newline at end of file
diff --git a/src/routes/zhen/CVs/epos/+page.svelte b/src/routes/zhen/CVs/epos/+page.svelte
index 8ae9425..948ebc8 100644
--- a/src/routes/zhen/CVs/epos/+page.svelte
+++ b/src/routes/zhen/CVs/epos/+page.svelte
@@ -1,26 +1,40 @@
-
@@ -35,7 +49,7 @@
}
.cv-container-container * {
- color: black;
+ color: black; // Set all text black
}
.cv-container {
@@ -46,7 +60,6 @@
overflow: visible;
display: flex;
- justify-content: center;
padding: auto;
}
@@ -55,25 +68,52 @@
print-color-adjust:exact !important;
}}
- #left-section{
- background-color: #bdd6ee;
- width: calc(100% / 3 * 1);
- left: 0;
+ .sections {
+ > div {
+ display: grid;
+ z-index: 0;
- display: grid;
- place-items: center;
+ // Needed to cuttoff the extra decoration
+ position: relative;
+ overflow: hidden;
+ }
- padding-top: 20mm;
- padding-bottom: 20mm;
- }
+ #left-section{
+ background-color: #bdd6ee;
+ width: calc(100% / 3 * 1);
- #right-section{
- width: calc(100% / 3 * 2);
+ > div {
+ z-index: 1;
+ width: 100%;
+
+ left: 0;
- display: grid;
- place-items: center;
+ display: grid;
+ place-items: center;
- padding-top: 30mm;
- padding-bottom: 20mm;
+ padding-top: 30mm;
+ padding-bottom: 20mm;
+ }
+ }
+
+ #right-section{
+ width: calc(100% / 3 * 2);
+
+ padding-top: 30mm;
+ padding-bottom: 20mm;
+
+ > div {
+ z-index: 1;
+ width: 100%;
+
+ left: 0;
+
+ display: grid;
+ place-items: center;
+
+ padding-top: 30mm;
+ padding-bottom: 20mm;
+ }
+ }
}
\ No newline at end of file