diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /comm/suite/base/content/aboutLife.xhtml | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'comm/suite/base/content/aboutLife.xhtml')
-rw-r--r-- | comm/suite/base/content/aboutLife.xhtml | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/comm/suite/base/content/aboutLife.xhtml b/comm/suite/base/content/aboutLife.xhtml new file mode 100644 index 0000000000..bd61f40f44 --- /dev/null +++ b/comm/suite/base/content/aboutLife.xhtml @@ -0,0 +1,72 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- This Source Code Form is subject to the terms of the Mozilla Public + - License, v. 2.0. If a copy of the MPL was not distributed with this + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" + "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <title>Life, the Universe, and Everything</title> + + <script> + function load() + { + document.getElementById("magic").textContent = Math.sqrt(1764); + } + </script> + + <style> + html { + height: 100%; + width: 100%; + background-color: #B0D8FF; + background-image: radial-gradient(circle closest-side, #72B9FF, #B0D8FF); + } + + body { + margin: 0; + height: 100%; + width: 100%; + display: -moz-box; + -moz-box-pack: center; + -moz-box-align: center; + } + + p:empty { + font-size: 16px; + color: #72B9FF; + text-shadow: none; + transform: rotate(0deg); + } + + p { + font-family: arial; + font-weight: bold; + margin: 0; + transition-property: font-size, color, text-shadow, transform; + transition-duration: 6s; + transition-timing-function: ease; + font-size: 200px; + color: #0303E4; + text-shadow: #333333 3px 3px 3px; + transform: rotate(2160deg); + } + + p:hover { + transition-duration: 1s; + font-size: 300px; + color: #2727E8; + transform: rotate(2520deg); + } + </style> + +</head> + +<body onload="load();"> + <p id="magic"/> +</body> + +</html> |