Guest User

Untitled

a guest
Nov 18th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.24 KB | None | 0 0
  1.  
  2.  
  3.  
  4. body {
  5. padding: 0px;
  6. margin: 0px;
  7. font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma, "STHeiti", "Monaco";
  8. background-color: #D6D5D2;
  9. background-image: url("/static/img/bg.png");
  10. min-width: 900px;
  11. }
  12.  
  13.  
  14. a:link, a:visited, a:active {
  15. color: #2e8b57;
  16. text-decoration: none;
  17. }
  18.  
  19. a:hover {
  20. color: #CA226B;
  21. text-decoration: non-underline;
  22. }
  23.  
  24.  
  25. /* id */
  26. #respond { float:center; }
  27. #respond form {
  28. margin:0;
  29. padding:0;
  30. }
  31. #respond p{ margin: 20 0 0px 0; }
  32. #respond input[type="text"] { width: 20%; }
  33. #respond textarea {
  34. width: 50%;
  35. height: 100px;
  36. float: center;
  37. }
  38. #respond label { color: #999; }
  39. #respond input, #respond textarea {
  40. background-color: #fff;
  41. border: 3px solid rgba(128, 128, 160, 0.15);
  42. padding: 10px;
  43. font-family:"PT Serif", "Georgia", "Helvetica Neue", Arial, sans-serif;
  44. color: #4b4b4b;
  45. font-size: 14px;
  46. -webkit-border-radius: 5px;
  47. margin-bottom: 2px;
  48. margin-top: -12px;
  49. }
  50.  
  51. #respond input:focus, #respond textarea:focus {
  52. border: 2px solid #efefef;
  53. background-color: rgba(255, 255, 255, 1);
  54. }
  55.  
  56. #respond .submit {
  57. border: none;
  58. cursor: pointer;
  59. color: #666; font-size: 14px;
  60. background-color: #7ac000;
  61. padding: 5px 36px 8px 36px;
  62. -webkit-border-radius: 4px;
  63. -moz-border-radius: 4px;
  64. -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.42);
  65. -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.46);
  66. border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  67. border-top: 1px solid rgba(255, 255, 255, 0.5);
  68. background: -webkit-gradien(
  69. linear,
  70. left bottom,
  71. left top,
  72. color-stop(0.23, #999),
  73. color-stop(0.62, #ccc)
  74. );
  75. background: -moz-linear-gradient(
  76. center bottom,
  77. #999 23%,
  78. #ccc 62%
  79. );
  80. }
  81.  
  82. #respond .submit:hover { color: #fff; border-bottom: 1px solid rgba(0, 0, 0, 0.4); background-color: #666;
  83. background: -webkit-gradient(
  84. linear,
  85. left bottom,
  86. left top,
  87. color-stop(0.23, #666),
  88. color-stop(0.62, #999)
  89. );
  90. background: -moz-linear-gradient(
  91. center bottom,
  92. #666 23%,
  93. #999 62%
  94. );
  95. }
  96.  
  97. #respond .submit:active { position: relative; top: 1px; }
  98.  
  99.  
  100. #comment-box {
  101. width: 1024px;
  102. margin: 30px auto 0px auto;
  103. background-color: #FFF;
  104. -webkit-border-radius: 5px;
  105. -moz-border-radius: 5px;
  106. border-radius: 8px;
  107. border: 2px solid rgba(0,0,0,0.25);
  108. padding: 10px;
  109. color: #1C1C1C;
  110. font-size: 14px;
  111. -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 10.42);
  112. -moz-box-shadow: 0px 1px 10px rgba(0, 0, 0, 10.42);
  113. }
  114.  
  115. #reply-box {
  116. width: 1000px;
  117. margin: 10px auto 0px auto;
  118. background-color: #FFECEC;
  119. -webkit-border-radius: 5px;
  120. -moz-border-radius: 5px;
  121. border-radius: 8px;
  122. border: 2px solid rgba(0,0,0,0.45);
  123. padding: 10px;
  124. color: #696969;
  125. font-size: 14px;
  126. -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.42);
  127. -moz-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.42);
  128. }
  129.  
  130. #more-reply-box {
  131. width: 1000px;
  132. margin: 10px auto 0px auto;
  133. background-color: #EEE;
  134. -webkit-border-radius: 5px;
  135. -moz-border-radius: 5px;
  136. border-radius: 8px;
  137. border: 2px solid rgba(0,0,0,0.45);
  138. padding: 10px;
  139. color: #1C1C1C;
  140. font-size: 14px;
  141. -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.42);
  142. -moz-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.42);
  143. }
  144.  
  145.  
  146. /* class */
  147.  
  148. .sep {
  149. margin: 10px 0px 10px 0px;
  150. border-top: 2px solid #f0f0f0;
  151. }
  152.  
  153. .guest {
  154. color: #296386;
  155. }
  156.  
  157. .reply_btn {
  158. float: right
  159.  
  160. }
Add Comment
Please, Sign In to add comment