Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. .main {
  2. border:1px solid #c0c0c0;
  3. padding:5px;
  4. width:800px;
  5. }
  6.  
  7. .post {
  8. border:1px dashed #000;
  9. padding:15px;
  10. margin:20px;
  11. box-shadow: 1px 1px 7px 1px #aaa;
  12. }
  13. .title {
  14. font:bold 20px times;
  15. display:block;
  16. background:feeeee;
  17. padding:4px;
  18. padding-left:8px;
  19. } /* h2 */
  20.  
  21. .info {
  22. display:block;
  23. border:1px dotted #f99;
  24. background:#fefefe;
  25. width:400px;
  26. margin-bottom:20px;
  27. padding:3px;
  28. }
  29.  
  30. .date {
  31. font:bold 12px tahoma;
  32. padding:3px;
  33. }
  34.  
  35. .tags {
  36. margin:2px;
  37. }
  38.  
  39. .tags li {
  40. background:#f7f7f7;
  41. margin-bottom:2px;
  42. padding-left:3px;
  43. margin-left:-5px;
  44. }
  45.  
  46. .text {
  47. text-align:justify;
  48. }
  49. .text p {
  50. display:block;
  51. padding-bottom:7px;
  52. text-indent:30px;line-height:18px;margin:0;
  53. border-left:2px solid #dedede;
  54. padding-left:10px;
  55. margin-bottom:3px;
  56. }
  57.  
  58. .more {
  59. margin-left:30px;
  60. text-decoration:none;
  61. font-weight:bold;
  62. }
  63. .more:hover {
  64. margin-left:30px;
  65. text-decoration:underline;
  66. }
  67.  
  68. #comments {
  69. display:block;
  70. margin:30px;
  71. background:#f1f1f1;
  72. font:normal 12px tahoma;
  73. }
  74.  
  75. #comment-form {
  76. border-left:2px solid red;
  77. background:#eee;
  78. padding:10px;
  79. padding-left:20px;
  80. width:400px;
  81. }
  82.  
  83. #comment-form * {
  84. font:normal 12px tahoma;
  85. display:block;
  86. }
  87.  
  88. #comment-form b {
  89. font:bold 12px;
  90. display:block;
  91. width:73px;
  92. float:left;
  93. }
  94.  
  95. #comment-form i {
  96. text-style:normal;
  97. display:block;
  98. width:10px;
  99. float:left;
  100. }
  101.  
  102. #comment-form input {
  103. width:250px;
  104. }
  105.  
  106. #comment-form #send {width:70px;margin-left:82px;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement