Advertisement
Guest User

Untitled

a guest
Sep 12th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | None | 0 0
  1. .RoundCornersThree {
  2. -moz-border-radius: 3px;
  3. -webkit-border-radius: 3px;
  4. -khtml-border-radius: 3px;
  5. border-radius: 3px;
  6. }
  7.  
  8. .StartHidden {
  9. display: none;
  10. }
  11.  
  12. body {
  13. background-color: #0d0d0d;
  14. font-family: 'Droid Sans', arial, serif;
  15. font-size: 1em;
  16. color: #999;
  17. font-weight: 400;
  18. line-height: 1.25em;
  19. margin: 50px;
  20. }
  21.  
  22.  
  23. body, h1, h2, h3, h4, h5, h6, p, a {
  24. color: #ccc;
  25. font-weight: normal;
  26. }
  27.  
  28. #LeftNav {
  29. width: 240px;
  30. margin-right: 60px;
  31. height: 100%;
  32. float: left;
  33. }
  34.  
  35. #LeftNav ul {
  36. list-style-type: none;
  37. margin: 0px;
  38. padding: 0px;
  39. }
  40.  
  41. #LeftNav ul li{
  42. border-bottom: 1px solid #262626;
  43. line-height: 1.5em;
  44. list-style-type: none;
  45. margin: 0px;
  46. padding: 0px;
  47. font-size: 1.25em;
  48. }
  49.  
  50.  
  51. #LeftNav ul li a {
  52. padding: 5px 0px 5px 3px;
  53. display: block;
  54. color: #999;
  55. list-style-type: none;
  56. text-decoration: none;
  57. text-transform: uppercase;
  58. -webkit-transition: all 0.1s; /*Safari & Chrome*/
  59. transition: all 0.1s;
  60. -moz-transition: all 0.1s; /* Firefox 4 */
  61. -o-transition: all 0.1s; /* Opera */
  62. }
  63.  
  64. #LeftNav ul li a:hover,
  65. #LeftNav ul li.activated a{
  66. color: #fff;
  67. text-shadow: 0px 0px 10px #fff;
  68. }
  69.  
  70. #MainContainer {
  71. height: 400px;
  72. word-wrap: break-word;
  73. float:left;
  74. width: 65%;
  75. }
  76.  
  77.  
  78. .button {
  79. color: #0d0d0d;
  80. font-size: 0.875em;
  81. float: left;
  82. margin-right: 20px;
  83. padding: 2px 6px;
  84. display: block;
  85. background-color: #808080;
  86. text-decoration: none;
  87. }
  88.  
  89. .button:hover {
  90. background-color: #ccc;
  91. }
  92.  
  93. .button:active {
  94. background-color: #4c4c4c;
  95. }
  96.  
  97. table, th, td {
  98.  
  99. border-collapse: collapse;
  100. border: none;
  101. margin: 20px 0px;
  102. }
  103.  
  104. th {
  105. background: none repeat scroll 0 0 #333;
  106. color: #e5e5e5;
  107. padding: 0px 10px 0px 6px;
  108. font-size: 1em;
  109. font-weight: normal;
  110. letter-spacing: normal;
  111. line-height: 2.6em;
  112. text-transform: capitalize;
  113. border-right: 1px solid #0d0d0d;
  114.  
  115. }
  116.  
  117. th:first-child {
  118. -moz-border-radius: 6px 0 0 0;
  119. -webkit-border-radius: 6px 0 0 0;
  120. border-radius: 6px 0 0 0;
  121. border-right: 1px solid #0d0d0d;
  122. }
  123.  
  124. th:last-child {
  125. -moz-border-radius: 0 6px 0 0;
  126. -webkit-border-radius: 0 6px 0 0;
  127. border-radius: 0 6px 0 0;
  128. border-right: none;
  129. }
  130.  
  131. th:only-child {
  132. -moz-border-radius: 6px 6px 0 0;
  133. -webkit-border-radius: 6px 6px 0 0;
  134. }
  135.  
  136.  
  137.  
  138. td {
  139. border-top: none;
  140. border-bottom: 1px solid #333333;
  141. padding: 10px 10px 10px 10px;
  142. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement