1xptolevitico69

Css Pause button icon

Jul 16th, 2022 (edited)
919
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.29 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/Pause 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>Pause button icon</title>
  12.   <style>
  13.  
  14. #pauseButtonIcon {
  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.  
  25. #pauseIconContainer {
  26.   width: 30px;
  27.   height: 50px;
  28.   display: inline-block;
  29. }
  30.  
  31. #leftIcon {
  32.   border: 5px solid red;
  33.   display: inline-block;
  34.   height: 40px;
  35.   float: left;
  36. }
  37. #rightIcon {
  38.   border: 5px solid red;
  39.   display: inline-block;
  40.   height: 40px;
  41.   float: right;
  42. }
  43.  
  44.  
  45.  
  46. </style>
  47. </head>
  48. <body>
  49.  
  50. <button id='pauseButtonIcon'>
  51.   <div id='pauseIconContainer'>
  52.     <span id='leftIcon'></span>
  53.     <span id='rightIcon'></span>
  54.   </div>
  55. </button>
  56.  
  57.  
  58.   <script></script>
  59. </body>
  60. </html>
Add Comment
Please, Sign In to add comment