1xptolevitico69

Css Unmute button icon

Jul 16th, 2022 (edited)
907
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <link rel="shortcut icon" href="https://1xpto.netlify.app/items/favicon.gif" type="image/x-icon">
  5.   <link rel="name" href="https://www.facebook.com/ManuelJSAndrade/">
  6.   <link rel="name" href="https://www.instagram.com/jolie1xpto/">
  7.   <link rel="tag" href="https://1xpto.netlify.app/articles/html/Unmute button icon">
  8.   <meta charset="UTF-8">
  9.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  10.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11.   <title>Unmute button icon</title>
  12.   <style>
  13.  
  14. #unmuteButtonIcon {
  15.   width: 100px;
  16.   height: 100px;
  17.   border: 5px solid red;
  18.   border-radius: 50%;
  19.   background-color: transparent;
  20.   transform: scale(3);
  21.   transform-origin: left top;
  22.   margin: 100px 200px;
  23. }
  24. #unmuteContainer {
  25.   width: 50px;
  26.   height: 70px;
  27.   display: inline-block;
  28. }
  29. #base1 {
  30.   border: 15px solid red;
  31.   display: inline-block;
  32.   height: 30px;
  33.   border-radius: 30px;
  34.   margin: 5px 0;
  35. }
  36. #base2 {
  37.   border: 5px solid red;
  38.   width: 40px;
  39.   height: 40px;
  40.   display: block;
  41.   border-radius: 50%;
  42.   border-left: 5px solid transparent;
  43.   border-top: 5px solid transparent;
  44.   transform: rotate(45deg);
  45.   margin: -48px 0;
  46. }
  47.  
  48. #base3 {
  49.   border: 5px solid red;
  50.   display: inline-block;
  51.   height: 5px;
  52.   margin: 43px 0;
  53. }
  54.  
  55.  
  56.  
  57.  
  58. </style>
  59. </head>
  60. <body>
  61.  
  62. <button id='unmuteButtonIcon'>
  63.   <div id='unmuteContainer'>
  64.     <center>
  65.       <span id='base1'></span>
  66.       <span id='base2'></span>
  67.       <span id='base3'></span>
  68.     </center>
  69.   </div>
  70. </button>
  71.  
  72.  
  73.   <script></script>
  74. </body>
  75. </html>
Add Comment
Please, Sign In to add comment