diff --git a/src/templates/alex_deluxe.css b/src/templates/alex_deluxe.css
index e685278c8..59648b042 100644
--- a/src/templates/alex_deluxe.css
+++ b/src/templates/alex_deluxe.css
@@ -1,11 +1,21 @@
+html, body {
+ background: #5397f5;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+ height: 90vh;
+}
+
+
.container-front {
padding: 1rem;
background: #5397f5;
- width: 80vw;
+ max-width: 80vw;
+ width: 100%;
margin: 0 auto;
color: white;
font-size: 3.5vw;
- border-radius: 0.7rem;
}
.container-back {
@@ -15,7 +25,6 @@
margin: 0 auto;
color: white;
font-size: 3.5vw;
- border-radius: 0.7rem;
}
hr {
@@ -23,3 +32,10 @@ hr {
color: white;
border-color: white;
}
+
+div a {
+ color: black !important;
+ font-weight: bold
+ background: white;
+ padding: 0.2rem 0.3rem;
+}
\ No newline at end of file
diff --git a/src/templates/alex_deluxe_basic_back.html b/src/templates/alex_deluxe_basic_back.html
index 4b082c604..11b7d3e53 100644
--- a/src/templates/alex_deluxe_basic_back.html
+++ b/src/templates/alex_deluxe_basic_back.html
@@ -1,4 +1,7 @@
- {{Front}}
-
{{Back}}
+ {{Front}}
+ {{#Back}}
+
+ {{Back}}
+ {{/Back}}
\ No newline at end of file
diff --git a/src/templates/alex_deluxe_basic_front.html b/src/templates/alex_deluxe_basic_front.html
index bfd0ed7b8..b8916d30b 100644
--- a/src/templates/alex_deluxe_basic_front.html
+++ b/src/templates/alex_deluxe_basic_front.html
@@ -1,3 +1,3 @@
- {{Front}}
+
{{Front}}
\ No newline at end of file
diff --git a/src/templates/alex_deluxe_cloze_back.html b/src/templates/alex_deluxe_cloze_back.html
index 0a6b75bfa..ce4820623 100644
--- a/src/templates/alex_deluxe_cloze_back.html
+++ b/src/templates/alex_deluxe_cloze_back.html
@@ -1,3 +1,7 @@
- {{cloze:Text}}
+
{{cloze:Text}}
+ {{#Extra}}
+
+ {{Extra}}
+ {{/Extra}}
\ No newline at end of file
diff --git a/src/templates/alex_deluxe_cloze_front.html b/src/templates/alex_deluxe_cloze_front.html
index 5ec9c44a6..d3ad2962a 100644
--- a/src/templates/alex_deluxe_cloze_front.html
+++ b/src/templates/alex_deluxe_cloze_front.html
@@ -1,3 +1,3 @@
- {{cloze:Text}}
+
{{cloze:Text}}
\ No newline at end of file
diff --git a/src/templates/alex_deluxe_cloze_style.css b/src/templates/alex_deluxe_cloze_style.css
index e685278c8..48b65f5d6 100644
--- a/src/templates/alex_deluxe_cloze_style.css
+++ b/src/templates/alex_deluxe_cloze_style.css
@@ -1,25 +1,57 @@
-.container-front {
+span {
+ color: white !important;
+}
+
+html, body {
+ background: #5397f5;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+ height: 80vh;
+}
+
+.container-front, .container-back {
+ font-size: 2.81em;
padding: 1rem;
background: #5397f5;
- width: 80vw;
+ max-width: 80vw;
+ width: 100%;
margin: 0 auto;
color: white;
- font-size: 3.5vw;
- border-radius: 0.7rem;
}
-.container-back {
- padding: 1rem;
- background: #5397f5;
- width: 80vw;
- margin: 0 auto;
+hr {
+ background-color: white;
color: white;
- font-size: 3.5vw;
- border-radius: 0.7rem;
+ border-color: white;
+}
+
+a {
+ color: white;
+}
+
+.container-back .cloze {
+ text-decoration: underline;
}
+
hr {
background-color: white;
color: white;
border-color: white;
}
+
+div a {
+ color: black !important;
+ font-weight: bold
+ border: 0.9px solid white;
+ background: white;
+ padding: 0.2rem 0.3rem;
+ border-radius: 6px;
+}
+
+div a:hover {
+ background: blue;
+ color: pink !important;
+}
\ No newline at end of file