blob: bd61f40f4461e198b743fb3761e0e5622c524fc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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>
|