Fix page EP layout

This commit is contained in:
2026-09-07 21:51:15 +03:00
parent ddc323a305
commit 574825e42d
3 changed files with 43 additions and 1 deletions
+2 -1
View File
@@ -7,6 +7,7 @@
"localization": false, "localization": false,
"config": { "config": {
"product_name": "eternityproject.fi", "product_name": "eternityproject.fi",
"favicon": "/images/favicon.svg" "favicon": "/images/favicon.svg",
"skin_logo": "/images/logo.svg"
} }
} }
+5
View File
@@ -1,4 +1,9 @@
/* The official roundcube/roundcubemail Docker image ships Elastic pre-minified
as styles.min.css (no plain styles.css); source/dev installs may have only
the unminified file. A missing @import just yields an empty sheet, so
importing both here is a harmless way to support either layout. */
@import url("../../elastic/styles/styles.css"); @import url("../../elastic/styles/styles.css");
@import url("../../elastic/styles/styles.min.css");
:root { :root {
--ink: #11212b; --ink: #11212b;
+36
View File
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
html, body { height: 100%; overflow: hidden; }
body {
background: url(images/logo.svg) center no-repeat #f1f1e9;
background-size: 30%;
}
html:not(.dark-mode) body:before {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(241, 241, 233, .85);
}
html.dark-mode > body {
background-color: #11212b;
}
</style>
<script>
try {
if (document.cookie.indexOf('colorMode=dark') > -1
|| (document.cookie.indexOf('colorMode=light') === -1 && window.matchMedia('(prefers-color-scheme: dark)').matches)
) {
document.documentElement.className += ' dark-mode';
}
} catch (e) { }
</script>
</head>
<body></body>
</html>