roundcube_themes/watermark.html

40 lines
909 B
HTML
Raw Permalink Normal View History

2020-03-19 10:44:32 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
html, body { height: 100%; overflow: hidden; }
body {
background: url(https://disroot.org/user/themes/disroot/images/disroot-root.png) center no-repeat;
background-size: 30%;
background-blend-mode: luminosity;
opacity: 0.8;
2020-03-19 10:44:32 +01:00
}
2021-10-26 20:11:30 +02:00
html:not(.dark-mode) body:before {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, .85);
}
html.dark-mode > body {
background-color: #2b2f3b;
background-blend-mode: overlay;
2021-10-26 20:11:30 +02:00
}
2020-03-19 10:44:32 +01:00
</style>
2021-10-26 20:11:30 +02:00
<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>
2020-03-19 10:44:32 +01:00
</head>
<body></body>
</html>