corawons

rising cbox on hover

Oct 19th, 2022
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.82 KB | None | 0 0
  1. <link href='http://fonts.googleapis.com/css?family=Josefin+Sans:300|Roboto' rel='stylesheet' type='text/css'>
  2. <style>
  3. #cbox {
  4.     left: 40px;
  5.     bottom: -354px;
  6.     z-index: 9999;
  7.     position: fixed;
  8.     -webkit-transition: all 0.8s ease-in-out;
  9.     -moz-transition: all 0.8s ease-in-out;
  10.     -o-transition: all 0.8s ease-in-out;
  11.     -ms-transition: all 0.8s ease-in-out;
  12.     transition: all 0.8s ease-in-out;
  13.     border: 5px solid #fff;
  14.     border-top-left-radius: 10px;
  15.     border-top-right-radius: 10px;
  16.     box-shadow: 0px 0px 0px 1px #fedbdb;
  17. }
  18.  
  19. #cbox:hover {
  20.     bottom: 0px;
  21. }
  22.    
  23. #cboxtitle {
  24.     width: 180px;
  25.     height: 15px;
  26.     background-color: #ffffff;
  27.     background-image: url('https://41.media.tumblr.com/3827df8cb33c8426b76e87c2e5888822/tumblr_inline_npdg23RZcL1rnjuep_540.png');
  28.     padding: 8px 5px 5px 5px;
  29.     border-top-left-radius: 5px;
  30.     border-top-right-radius: 5px;
  31.     text-align: center;
  32.     font-size: 14px;
  33.     font-family: 'Josefin Sans', sans-serif;
  34.     font-weight: 300;
  35.     letter-spacing: 10px;
  36.     color: #db9494;
  37.     text-shadow: 1px 1px 1px #ffffff;
  38.     text-transform: uppercase;
  39. }
  40.  
  41. #cboxdesc {
  42.     width: 180px;
  43.     height: 40px;
  44.     padding: 5px;
  45.     background-color: #ffffff;
  46.     overflow: auto;
  47.     font-family: 'Roboto', sans-serif;
  48.     font-size: 9px;
  49.     text-align: justify;
  50.     letter-spacing: 1px;
  51.     color: #a19090;
  52. }
  53. </style>
  54. <div id="cbox">
  55. <div id="cboxtitle">chatbox</div>
  56. <div id="cboxdesc">
  57.  
  58. YOUR CHATBOX DESCRIPTION HERE  
  59.  
  60. </div> <!-- IMPORTANT! PLEASE KEEP THIS HERE -->
  61.  
  62. <iframe src="https://www6.cbox.ws/box/?boxid=858895&boxtag=p9XmKU" width="190" height="300" allowtransparency="yes" allow="autoplay" frameborder="0" marginheight="0" marginwidth="0" scrolling="auto"></iframe>   
  63. </div> <!-- IMPORTANT! PLEASE KEEP THIS HERE -->
  64.  
Add Comment
Please, Sign In to add comment