Advertisement
ponderism

updates tab 1: css

Jan 13th, 2015
774
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. #updates {
  2. font-size:10px;
  3. padding:4px;
  4. top:10px;
  5. left:10px;
  6. z-index:10;
  7. position:fixed;
  8. overflow:hidden;
  9. -webkit-transition: all 0.5s ease-in-out;
  10. -moz-transition: all 0.5s ease-in-out;
  11. -o-transition: all 0.5s ease-in-out;
  12. }
  13.  
  14. #updatestitle {
  15. font-size:11px;
  16. font-weight: bold;
  17. padding: 10px;
  18. border: 1px solid #ebebeb;
  19. }
  20.  
  21. #updatestext {
  22. margin-top: 15px;
  23. padding: 10px;
  24. width: 100px;
  25. line-height: 15px;
  26. border: 1px solid #ebebeb;
  27. opacity: 0;
  28. -webkit-transition: all 0.5s ease-in-out;
  29. -moz-transition: all 0.5s ease-in-out;
  30. -o-transition: all 0.5s ease-in-out;
  31. }
  32.  
  33. #updates:hover #updatestext{
  34. opacity: 1;
  35. margin-top: 3px;
  36. -webkit-transition: all 0.5s ease-in-out;
  37. -moz-transition: all 0.5s ease-in-out;
  38. -o-transition: all 0.5s ease-in-out;
  39. }
  40.  
  41. #updates:hover #cred{
  42. opacity: 1;
  43. margin-top: 3px;
  44. -webkit-transition: all 0.5s ease-in-out;
  45. -moz-transition: all 0.5s ease-in-out;
  46. -o-transition: all 0.5s ease-in-out;
  47. }
  48.  
  49. #updates b {
  50. width: 200px;
  51. padding: 5px;
  52. background: #f9f9f9;
  53. border: 1px solid #eee;
  54. }
  55.  
  56. #cred {
  57. margin-top: 15px;
  58. padding: 10px;
  59. width: 100px;
  60. font-weight: bold;
  61. line-height: 15px;
  62. background: #f9f9f9;
  63. border: 1px solid #ebebeb;
  64. opacity: 0;
  65. -webkit-transition: all 0.5s ease-in-out;
  66. -moz-transition: all 0.5s ease-in-out;
  67. -o-transition: all 0.5s ease-in-out;
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement