Advertisement
phpface

Untitled

Feb 23rd, 2018
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.87 KB | None | 0 0
  1. #content {
  2.     background: #333;
  3. }
  4.  
  5. #content p,
  6. #content a,
  7. #content .entry-title,
  8. #content .block-heading,
  9. #content .comment-reply-title{
  10.     color: #fff;
  11. }
  12.  
  13. #content input,
  14. #content textarea,
  15. #content select{
  16.     background: #333;
  17.     color: #fff;
  18.     border: 1px solid #444;
  19. }
  20.  
  21. #content select{
  22.     width: 100%;
  23. }
  24.  
  25. #content .post-comments input {
  26.     display:block;
  27.     margin-bottom:14px;
  28.     width: 50%;
  29. }
  30. #content .post-comments textarea {
  31.     width: 100%;
  32.     height:130px;
  33.     margin-bottom:20px;
  34. }
  35.  
  36. #content .post-comments input[type=submit] {
  37.     width:auto;
  38.     background: -webkit-linear-gradient(#494949, #393939);
  39.     background: -o-linear-gradient(#494949, #393939);
  40.     background: -moz-linear-gradient(#494949, #393939);
  41.     background: linear-gradient(#494949, #393939);
  42. }
  43.  
  44. #content .post,
  45. #content .widget ul li {
  46.     border-bottom: 1px solid #444;
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement