Guest User

Untitled

a guest
Sep 24th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. * {
  2. xoutline: 1px solid red;
  3. padding: 0;
  4. margin: 0;
  5. }
  6.  
  7. body {
  8. border-top:10px solid white;
  9. position: relative;
  10. font: 100%/1.5 Helvetica;
  11. }
  12.  
  13. header {
  14. position: absolute;
  15. bottom: 100%;
  16. border-bottom: 10px solid black;
  17. left: 0;
  18. right: 0;
  19. padding: 0.5em;
  20. background: linear-gradient(hsl(200, 10%, 20%), hsla(200, 10%, 20%, .9));
  21. color: white;
  22. transition: .5s 1s transform;
  23. }
  24.  
  25. header:hover {
  26. transform: translateY(-10px) translateY(100%);
  27. transition-delay: 0s;
  28. }
  29.  
  30. a {
  31. color: inherit;
  32. }
Add Comment
Please, Sign In to add comment