Advertisement
Ombashi

Saved copy

Sep 11th, 2020
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. <!DOCTYPE>
  2. <html>
  3.  
  4. <style>
  5.  
  6. .opt {
  7.  
  8. padding: 6px 14px;
  9. border-radius: 25px;
  10. background-color: #FFFFFF;
  11. color: #000000;
  12. text-align: center;
  13. border: 2px solid black;
  14. font-family: sans-serif;
  15. text-decoration: none;
  16. cursor: pointer;
  17.  
  18. }
  19.  
  20. .optlist {
  21.  
  22. padding-top: 30px;
  23. padding-bottom: 30px;
  24. padding-left: 24px;
  25. padding-right: 14px;
  26. border: 2px solid black;
  27. margin: 90;
  28. border-radius: 10px;
  29. display: none;
  30.  
  31. }
  32.  
  33. .optbut {
  34.  
  35. background-color: #FFFFFF;
  36. color: #000000;
  37. border: 2px solid black;
  38. border-radius: 25px;
  39. text-decoration: none;
  40. font-family: sans-serif;
  41. padding: 14px 14px;
  42. }
  43.  
  44. .optbut:hover {
  45.  
  46. background-color: #000000;
  47. color: #FFFFFF;
  48. }
  49.  
  50. .outbutA {
  51.  
  52. background-color: #000000;
  53. color: #FFFFFF;
  54. border: 2px solid black;
  55. border-radius: 25px;
  56. text-decoration: none;
  57. font-family: sans-serif;
  58. padding: 14px 14px;
  59.  
  60. }
  61.  
  62. #optdrop a {
  63.  
  64. display: block;
  65. z-index: 1;
  66. }
  67.  
  68. </style>
  69.  
  70. <body>
  71.  
  72. <a href = '#' class = 'opt'>More information</a>
  73.  
  74. <div class = 'optlist' id = 'optdrop'>
  75.  
  76. <a href = '#' class = 'optbut'>Disography</a>
  77.  
  78. <a href = '#' class = 'optbut'>Lawsuit</a>
  79.  
  80. <a href = '#' class = 'outbutA'>Biography</a>
  81.  
  82. <a href = '#' class = 'optbut'>Social Media</a>
  83.  
  84. </div>
  85.  
  86. </body>
  87.  
  88. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement