Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.55 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <style type="text/css">
  4.         .glow-box {
  5.             height:30px;
  6.             width:30%;
  7.             font-size:24px;
  8.             padding:2px;
  9.             background-color:#bbb;
  10.             border:1px solid #999;
  11.         }
  12.        
  13.         .glow-box:hover {
  14.             height:30px;
  15.             width:30%;
  16.             font-size:24px;
  17.             padding:2px;
  18.             background-color:#bbb;
  19.             border:1px solid #999;
  20.             -webkit-border-radius: 3px;
  21.             -moz-border-radius: 3px;
  22.             border-radius: 3px;
  23.             -moz-box-shadow: 0px 0px 20px 1px orange;
  24.             -webkit-box-shadow: 0px 0px 20px 1px orange;
  25.         }
  26.         </style>
  27. <body>
  28. <div class="glow-box"></div>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement