Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. .container {
  2. position: relative;
  3. width: 30%;
  4. text-align: center;
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. text-align: center;
  9. }
  10.  
  11. #image {
  12. opacity: 0.5;
  13. width: 100%;
  14. }
  15.  
  16. .overlay {
  17. position: absolute;
  18. width: 60%;
  19. top: 20%;
  20. background-color: white;
  21. border-radius: 10px;
  22. opacity: 0.7;
  23. }
  24.  
  25. .text-1 {
  26. font-size: 35px;
  27. }
  28.  
  29. .Gandalf {
  30. position: absolute;
  31. top: 50%;
  32. font-size: 60px;
  33. opacity: 1;
  34. color: white;
  35.  
  36. }
  37.  
  38. #red-text {
  39. color: orange;
  40. }
  41.  
  42. .container:hover .overlay {
  43. opacity: 0;
  44. }
  45.  
  46. .container:hover .Gandalf {
  47. opacity: 1;
  48. top: 90%;
  49. font-size: 30px;
  50. }
  51.  
  52. .container:hover #image {
  53. opacity: 1;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement