Advertisement
luciam

Updates #1 1/3

Jan 20th, 2015
4,288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. #phoenix {
  2. width:100px; /*Change updates width*/
  3. height:auto;
  4. position:fixed;
  5. left:20px; /*Change the updates left position.You can change it to right*/
  6. font-size:9px; /*Change the font size.*/
  7. letter-spacing:0.1em;
  8. top:100px; /*Change the updates top position.*/
  9. font-family:calibri, sans-serif; /*Change the font*/
  10. box-sizing:border-box;
  11. -moz-box-sizing:border-box;
  12. z-index:99999999999999999;
  13. }
  14.  
  15. #phoenix a {
  16. color: #333;/*Change the links color.*/
  17. text-decoration:none;
  18. border:none;
  19. }
  20.  
  21. #phoenix a:hover {
  22. color: #666;/*Change the links color on hover.*/
  23. text-decoration:none;
  24. border:none;
  25. }
  26.  
  27. #phoenix h1 {
  28. cursor: help; /*Change the cursor (or delete this line altogether)*/
  29. display:block;
  30. background-color: #fff; /*Change the titles background*/
  31. color: #666; /*Change the titles color*/
  32. text-transform:uppercase;
  33. text-align:center;
  34. font-size:8px;
  35. font-weight:400;
  36. letter-spacing:0.3em;
  37. padding:5px;
  38. font-family: calibri, sans-serif;
  39. transition:none;
  40. }
  41.  
  42. #phoenix .updatesbox:hover h1 {
  43. background: #666; /*Change the titles background on hover*/
  44. color: #fff; /*Change the titles color on hover*/
  45. text-align:right;
  46. }
  47.  
  48. #phoenix .updatesbox {
  49. width:100%;
  50. overflow:hidden;
  51. height:26px;
  52. margin-bottom:0px;
  53. }
  54.  
  55. #phoenix .updatesbox:hover {
  56. height:auto;
  57. }
  58. .updatescontent {
  59. box-sizing:border-box;
  60. -moz-box-sizing:border-box;
  61. width:100%;
  62. margin-top:0px;
  63. overflow:hidden;
  64. background: #fff; /*Change the content background*/
  65. color: #666; /*Change the content text color*/
  66. padding:5px;
  67. }
  68.  
  69. #phoenix .closetab {
  70. opacity:0;
  71. width:100%;
  72. font-size:10px;
  73. font-size:11px;
  74. text-align:right;
  75. margin-bottom:6px;
  76. cursor:pointer;
  77. }
  78.  
  79. #phoenix a.drag {
  80. opacity:0;
  81. display:block;
  82. float:left;
  83. width:50%;
  84. font-size:12px;
  85. margin-bottom:5px;
  86. }
  87.  
  88. #phoenix:hover a.drag, #phoenix:hover .closetab {
  89. opacity:1;
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement