Advertisement
voicelessthemes

Updates Tab #1 CSS

Apr 19th, 2017
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. #updates {
  2. position: fixed;
  3. right: 5px;
  4. top: 80px;
  5. z-index: 9999999999;
  6. }
  7.  
  8. .updates-pic {
  9. width: 200px;
  10. margin: 10px;
  11. }
  12.  
  13. .update-content {
  14. background: {select:Updates Background};
  15. width: 200px;
  16. margin: 10px;
  17. font-size: 12px;
  18. opacity: 0;
  19. padding: 10px;
  20. max-height: 250px;
  21. text-align: center;
  22. overflow-y: scroll;
  23. color: {color:Updates Text};
  24. transition: all 0.5s ease-in-out;
  25. -o-transition: all 0.5s ease-in-out;
  26. -moz-transition: all 0.5s ease-in-out;
  27. -webkit-transition: all 0.5s ease-in-out;
  28. -ms-transition: all 0.5s ease-in-out;
  29. }
  30.  
  31. #updates:hover .update-content {
  32. opacity: 1;
  33. transition: all 0.5s ease-in-out;
  34. -o-transition: all 0.5s ease-in-out;
  35. -moz-transition: all 0.5s ease-in-out;
  36. -webkit-transition: all 0.5s ease-in-out;
  37. -ms-transition: all 0.5s ease-in-out;
  38. }
  39.  
  40. .update-content p {
  41. margin: 4px 10px;
  42. }
  43.  
  44. .update-content h3 {
  45. font-size: 24px;
  46. margin: 3px 3px 10px;
  47. }
  48.  
  49. .update-content div {
  50. margin: 2px 10px;
  51. text-align: center;
  52. color: white;
  53. padding: 3px;
  54. background-color: {color:Updates Section};
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement