elsaofarendelle

Basic Updates Tab

May 23rd, 2016 (edited)
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. #updates {
  2. background:#transparent;
  3. font-size:9px;
  4. color:#fff;
  5. text-align:left;
  6. height:26px;
  7. width:100px;
  8. padding:4px;
  9. top:80px;
  10. left:40px;
  11. z-index:10;
  12. position:fixed;
  13. overflow:hidden;
  14. -webkit-transition: all 0.5s ease-in-out;
  15. -moz-transition: all 0.5s ease-in-out;
  16. -o-transition: all 0.5s ease-in-out;
  17. }
  18.  
  19. #updates:hover {
  20. background:#cbc2c6;
  21.  
  22. height:250px;
  23. -webkit-transition: all 0.5s ease-in-out;
  24. -moz-transition: all 0.5s ease-in-out;
  25. -o-transition: all 0.5s ease-in-out;
  26. }
  27.  
  28. #updatestitle {
  29. font-size:20px;
  30. text-transform:normal;
  31. font-family: Times;
  32. font-weight:bold;
  33. color:#fff;
  34. text-shadow:2px 2px 5px #000;
  35.  
  36. }
  37.  
  38. <div id="updates">
  39. <div id="updatestitle">Title Here</div>
  40.  
  41. <div style="padding-top:10px;">
  42.  
  43. <center>Text Here</center>
  44.  
  45. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment