Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. .Gandalf{
  2. height: 350px;
  3. position: relative;
  4. width: 450px;
  5. opacity:0.5;
  6. filter: alpha(opacity=50);
  7. }
  8. .Gandalf:hover{
  9. opacity:1.0;
  10. filter: alpha(opacity=100);
  11. }
  12. .Gandalf:hover ~ .wrapper{
  13. opacity: 0;
  14. }
  15. .Gandalf:hover ~ .wrapper p {
  16. opacity: 1 ;
  17. }
  18. .orange{
  19. color:orange;
  20. }
  21. h2{
  22. position: absolute;
  23. border-radius: 5px;
  24. background-color:rgb(253, 245, 245);
  25. padding: 15px;
  26. left: 110px;
  27. top:20px;
  28. font-family: 'Courier New', Courier, monospace;
  29. text-align: center;
  30. text-size-adjust:88px;
  31. /*text-decoration-color:black;*/
  32. border:white solid;
  33. filter: alpha(opacity=100);
  34. }
  35. h2:hover{
  36. filter: alpha(opacity=100);
  37.  
  38. }
  39.  
  40. p {
  41. color:white;
  42. text-size-adjust:10px;
  43. position: absolute;
  44. text-align: center;
  45. top:150px;
  46. left:130px;
  47. font-size: 50px;
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement