Report abuse

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Place in a stylesheet in ~/Documents. Select as a custom stylesheet in the preferences.

* {
  -webkit-transform-style: preserve-3d; -webkit-transform: translateZ(20px);
  background: rgba(255, 255, 255, .25);
  outline: 1px solid rgba(0, 0, 0, .25);
}
html {
  -webkit-transform: perspective(1200px) rotateY(5deg) translateZ(-500px);
  -webkit-transition: -webkit-transform 1s ease-in-out;
}
html:hover {
  -webkit-transform: perspective(1200px) rotateY(20deg) translateZ(-500px);
}
body { height: 100%; }