hero0fwar

TV Reddit

Feb 6th, 2013
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. /* TV Reddit */
  2.  
  3. div.content {
  4. margin-top:40px;
  5. }
  6.  
  7. /*hack to enable positioning of child elements*/
  8.  
  9. .titlebox form {
  10. position: static
  11. }
  12.  
  13. /*turns top quote in sidebar into menu container*/
  14.  
  15. .titlebox blockquote:first-child {
  16. border-left: none;
  17. position: absolute;
  18. z-index: 100;
  19. top: 163px;
  20. left: -10px
  21. }
  22.  
  23. /*turns first paragraph into menu title*/
  24.  
  25. .titlebox blockquote:first-child p:first-child {
  26. margin-top: 0px;
  27. padding: 5px;
  28. float: left;
  29. font-size: 12pt;
  30. background: #606060;
  31. border: 1px solid #cee3f8;
  32. font-weight:bold;
  33. color: white;
  34. cursor:default;
  35. }
  36.  
  37. /*turns the lists into menus*/
  38.  
  39. .titlebox blockquote ul {
  40. float: right;
  41. padding: 1px;
  42. background: #000000;
  43. border-top: 1px solid black;
  44. border-left: 1px solid black;
  45. border-right: 1px solid black;
  46. border-bottom: 1px solid black;
  47. -webkit-border-bottom-right-radius: 7px;
  48. border-bottom-right-radius: 7px;
  49. -webkit-border-bottom-left-radius: 7px;
  50. border-bottom-left-radius: 7px;
  51. margin:0px;
  52. }
  53.  
  54. /*hide and styles lists*/
  55.  
  56. .titlebox blockquote ul li {
  57. display: none;
  58. padding:2px;
  59. text-align:center;
  60. }
  61.  
  62. /*makes whole list item selectable*/
  63.  
  64. .titlebox blockquote li a {
  65. color: #ffffff;
  66. display:block;
  67. font-size: 12px;
  68. }
  69.  
  70. /*shows menu on hover*/
  71.  
  72. .titlebox blockquote ul li:first-child, .titlebox blockquote ul:hover li {
  73. display: block
  74. }
  75.  
  76. /*turns top list item into section header*/
  77.  
  78. .titlebox blockquote li:first-child {
  79. font-size: 12pt;
  80. padding: 4px;
  81. cursor:default;
  82. }
  83.  
  84. /*styling menu items*/
  85.  
  86. .titlebox blockquote:first-child ul li:hover {
  87. background: #006e89;
  88. }
  89. .titlebox blockquote li a:hover {
  90. color: black;
  91.  
  92. }
  93.  
  94. /*custom size for menu sections*/
  95.  
  96. .titlebox blockquote ul:nth-of-type(1) {width:130px;}
  97. .titlebox blockquote ul:nth-of-type(2) {width:130px;}
  98. .titlebox blockquote ul:nth-of-type(3) {width:130px;}
  99. .titlebox blockquote ul:nth-of-type(4) {width:130px;}
  100. .titlebox blockquote ul:nth-of-type(5) {width:130px;}
  101. .titlebox blockquote ul:nth-of-type(6) {width:130px;}
  102. .titlebox blockquote ul:nth-of-type(7) {width:130px;}
  103. .titlebox blockquote ul:nth-of-type(8) {width:130px;}
  104. .titlebox blockquote ul:nth-of-type(9) {width:130px;}
  105. .titlebox blockquote ul:nth-of-type(10) {width:130px;}
  106. .titlebox blockquote ul:nth-of-type(11) {width:130px;}
  107.  
  108. /* TV Reddit End */
Add Comment
Please, Sign In to add comment