Guest User

Untitled

a guest
Nov 20th, 2018
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. /**
  2. * Flipper
  3. */
  4. html {
  5. min-height: 100%;
  6. }
  7. body {
  8. margin: 0;
  9. overflow: hidden;
  10. padding: 0;
  11. }
  12. .panel {
  13. position: absolute;
  14. height: 100%;
  15. width: 50%;
  16. }
  17. #viewport {
  18. perspective: 1000;
  19. }
  20. #flipper {
  21. height: 100%;
  22. transform-origin:50% 00%;
  23. transition: transform .5s ease 0;
  24. width: 100%;
  25. }
  26. #code:target #flipper {
  27. transform: rotateY(180deg);
  28. }
  29. #flipper .side {
  30. height: 100%;
  31. font-size: 100px;
  32. position: absolute;
  33. width: 100%;
  34. }
  35. #info-side {
  36. background: red;
  37. z-index: 800;
  38. }
  39. #code-side {
  40. background: blue;
  41. z-index: 700;
  42. transform: rotateY(180deg);
  43. transition: z-index .25s linear 0;
  44. }
  45. #code:target #code-side
  46. {
  47. z-index: 900;
  48. }
  49. #result {
  50. right: 0;
  51. }
Add Comment
Please, Sign In to add comment