diff --git a/data/ui-en.json b/data/ui-en.json index 0c9e12c..39d54c7 100644 --- a/data/ui-en.json +++ b/data/ui-en.json @@ -8,6 +8,7 @@ "html5": "Semantic HTML5", "css3": "Pure CSS3" }, - "viewSource": "View Project in Github" + "viewSource": "View Project in Github", + "viewSourceSubtext": "Want to know how it's built?" } } diff --git a/data/ui-es.json b/data/ui-es.json index bd4f3bd..29c02ab 100644 --- a/data/ui-es.json +++ b/data/ui-es.json @@ -8,6 +8,7 @@ "html5": "HTML5 Semántico", "css3": "CSS3 Puro" }, - "viewSource": "Ver proyecto en Github" + "viewSource": "Ver proyecto en Github", + "viewSourceSubtext": "¿Quieres saber cómo está hecho?" } } diff --git a/static/css/main.css b/static/css/main.css index 195cdc3..ce84581 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -2750,8 +2750,37 @@ html { height: 53px; object-fit: cover; border-radius: 4px; - border: 2px solid #27ae60; - box-shadow: 0 2px 8px rgba(39, 174, 96, 0.2); + border: none; + box-shadow: none; +} + +.photo-bracket-wrapper { + position: relative; + display: inline-flex; + align-items: center; + padding: 0 22px; +} + +.photo-bracket-wrapper::before { + content: '{'; + position: absolute; + left: 2px; + font-size: 2rem; + font-weight: 700; + color: #27ae60; + line-height: 1; + top: 8px; +} + +.photo-bracket-wrapper::after { + content: '}'; + position: absolute; + right: 2px; + font-size: 2rem; + font-weight: 700; + color: #27ae60; + line-height: 1; + top: 8px; } .info-modal-body { @@ -2833,6 +2862,15 @@ html { box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3); } +.info-modal-github-subtext { + text-align: center; + font-size: 0.9rem; + color: #666; + margin-top: 0.5rem; + margin-bottom: 0; + font-style: italic; +} + /* Mobile responsive */ @media (max-width: 768px) { .info-modal-content { diff --git a/templates/index.html b/templates/index.html index 1477c57..f3e9e98 100644 --- a/templates/index.html +++ b/templates/index.html @@ -385,7 +385,9 @@

{{.UI.InfoModal.Title}}

CV {{.CurrentYear}} JAMR - - JAMR + + JAMR +
@@ -418,6 +420,7 @@ {{.UI.InfoModal.ViewSource}} +

{{.UI.InfoModal.ViewSourceSubtext}}