Advertisement
Guest User

Untitled

a guest
Aug 16th, 2012
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. body { background:none; }
  2. #profile-container { width:800px;background:#333; }
  3. body { background:none; }
  4. #profile-container { width:800px; height: 600px; ;background:#333; }
  5. body { background:none; }
  6. #profile-container { width:800px; height: 600px; background:#333; }
  7. #profile-container {background:none;}
  8. ::-webkit-scrollbar { width: 8px; height: 10px; }
  9. ::-webkit-scrollbar-button:start:decrement { display: block; width: 0px; height: 0px;
  10. background-color: rgb(255, 255, 255); }
  11. ::-webkit-scrollbar-button:end:increment { display: block; width: 0px; height: 0px;
  12. background-color: rgb(255, 255, 255); }
  13. ::-webkit-scrollbar-track:enabled { background-color: transparent; }
  14. ::-webkit-scrollbar-track-piece { background-color: transparent; border: none; margin: 8px 0 8px 0; }
  15. ::-webkit-scrollbar-thumb:vertical { height: 30px; background-color: rgb(0, 0, 0);
  16. -webkit-border-radius: 5px; -webkit-box-shadow: 0 1px 1px rgb(0,0,0) }
  17. ::-webkit-scrollbar-thumb:horizontal { width: 30px; background-color: rgb(0, 0, 0); }
  18. .tabs {
  19. position: relative;
  20. min-height: 636px;
  21. min-width: 813px;
  22. clear: both;
  23. margin: 0px 0;
  24. }
  25. .tab {
  26. float: right;
  27. }
  28. .tab label {
  29. border-radius: 5px 5px 0px 0px;
  30. background: black;
  31. color: white;
  32. padding: 2px;
  33. border-top: 1px solid white;
  34. border-left: 1px solid white;
  35. border-right: 1px solid white;
  36. margin-left: -1px;
  37. position: relative;
  38. }
  39. .tab [type=radio] {
  40. display: none;
  41. }
  42. .content {
  43. position: absolute;
  44. top: 24px;
  45. left: 0;
  46. background: #000000;
  47. right: 0;
  48. bottom: 0;
  49. padding: 5px;
  50. border: 1px solid white;
  51. }
  52. [type=radio]:checked ~ label {
  53. background: #border-top: 1px solid #ff3366;
  54. border-bottom: 1px solid black;
  55. z-index: 2;
  56. }
  57. [type=radio]:checked ~ label ~ .content {
  58. z-index: 1;
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement