Advertisement
Guest User

Codigo1

a guest
Nov 27th, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. /****************** começo do fulano citouuu ***************/
  2. #tudo {width:150px; margin-left:20px; margin-top:300px;}
  3. ::-webkit-scrollbar{width:7px;
  4. height:0px;}
  5. ::-webkit-scrollbar-button:start:decrement
  6. ::-webkit-scrollbar-button:end:increment{display:block;
  7. height:0;
  8. background-color:#000;}
  9. ::-webkit-scrollbar-track-piece{background-color:#fff;
  10. -webkit-border-radius:0;
  11. -webkit-border-bottom-right-radius:3px;
  12. -webkit-border-bottom-left-radius:3px;}
  13. ::-webkit-scrollbar-thumb:vertical{height:50px;
  14. background-color:#000;}
  15. ::-webkit-scrollbar-thumb:horizontal{width:50px;
  16. background-color:#000;}
  17.  
  18. #updatetab {
  19. font-family: helvetica; /*this is the font*/
  20. color: #000;} /*this is the font color*/
  21. #tabtitle, #dropdown, #dropdown p {
  22. background-color:#ffffff; /*this is the background color*/
  23. border-color: #000000;} /*this is the border color*/
  24.  
  25. #updatetab {
  26. width:100px;
  27. position:fixed;
  28. top:50px;
  29. right:65px;}
  30.  
  31. #tabtitle {
  32. text-align:center;
  33. padding:2px 3px;
  34. letter-spacing:2px;
  35. font-size:10px;
  36. text-transform:uppercase;
  37. border-width:1.9px;
  38. border-style: dashed;
  39. border-radius: 2px;
  40. -moz-border-radius: 2px;
  41. -webkit-border-radius: 2px;}
  42.  
  43. #dropdown {
  44. border-style:dashed;
  45. border-width:0px 1px 1px 1px;
  46. padding:5px 5px 0px 5px;
  47. border-bottom-right-radius: 20px;
  48. -moz-border-bottom-right-radius: 2px;
  49. -webkit-border-bottom-right-radius: 2px;
  50. border-bottom-left-radius: 2px;
  51. -moz-border-bottom-left-radius: 2px;
  52. -webkit-border-bottom-left-radius: 2px;
  53. opacity:0;
  54. -webkit-transition: all 0.5s ease-in-out;
  55. -moz-transition: all 0.5s ease-in-out;
  56. -o-transition: all 0.5s ease-in-out;
  57. -ms-transition: all 0.5s ease-in-out;
  58. transition: all 0.5s ease-in-out;}
  59.  
  60. #updatetab:hover #dropdown {
  61. opacity:1;
  62. -webkit-transition: all 0.5s ease-in-out;
  63. -moz-transition: all 0.5s ease-in-out;
  64. -o-transition: all 0.5s ease-in-out;
  65. -ms-transition: all 0.5s ease-in-out;
  66. transition: all 0.5s ease-in-out;}
  67.  
  68. #dropdown p {
  69. padding-top:3px;
  70. padding-bottom:3px;
  71. border-width:0px 0px 1px 0px;
  72. border-style:solid;
  73. font-size:10px;}
  74.  
  75. #dropdown p:last-of-type {
  76. border-bottom:0px solid transparent;}
  77.  
  78. #updatetab p, #updatetab ul, #updatetab li, #updatetab ol {
  79. margin: 0px 0px 0px 0px;}
  80.  
  81.  
  82. /****************** fim do fulano citouuu ***************/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement