adeptus

menu section on hover

Jul 26th, 2022
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <link rel="preconnect" href="https://fonts.googleapis.com">
  2. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  3. <link href="https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap" rel="stylesheet">
  4.  
  5. <style>
  6.  
  7. #cont {
  8. width: 200px;
  9. height: 200px;
  10. border: 4px double black;
  11. position: relative;
  12. overflow: hidden;
  13.  
  14. }
  15.  
  16. .img {
  17. width: 100%;
  18. height: 100%;
  19. object-fit: cover;
  20.  
  21. }
  22.  
  23. #numbers {
  24. position: absolute;
  25. bottom: -50px;
  26. border: 4px double black;
  27. background: white;
  28. padding-left: 5px;
  29. padding-right: 5px;
  30. padding-bottom: 5px;
  31. left: 10px;
  32. transition: .5s ease;
  33. }
  34.  
  35. #numbers a{
  36. text-decoration: none;
  37. font-weight: bold;
  38. font-family: 'Berkshire Swash', cursive;
  39. color: #CC554A;
  40. font-size: 1.5em;
  41. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  42.  
  43. }
  44.  
  45. #numbers a:hover{
  46. color: #fff;
  47. }
  48.  
  49. #cont:hover #numbers {
  50. bottom: 10px;
  51. }
  52.  
  53. </style>
  54.  
  55. <div id="cont">
  56.  
  57. <img class=img src="https://cdn.discordapp.com/attachments/830692724108951562/885850865787871242/image0.jpg">
  58.  
  59. <div id="numbers"> <a href="#">00</a> <a href="#">01</a> <a href="#">02</a> </div>
  60.  
  61. </div>
Advertisement
Add Comment
Please, Sign In to add comment