Advertisement
horozov86

publication_details.css

May 22nd, 2025
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.25 KB | None | 0 0
  1. body {
  2.   font-family: Arial, sans-serif;
  3.   background-color: #f0f2f5;
  4.   padding: 20px;
  5. }
  6.  
  7. .post-container {
  8.   max-width: 600px;
  9.   margin: auto;
  10.   background: gray;
  11.   border-radius: 8px;
  12.   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  13.   overflow: hidden;
  14. }
  15.  
  16. .post-header {
  17.   display: flex;
  18.   align-items: center;
  19.   padding: 15px;
  20.   border-bottom: 1px solid #ddd;
  21. }
  22.  
  23. .avatar {
  24.   width: 40px;
  25.   height: 40px;
  26.   border-radius: 50%;
  27.   background: #ccc;
  28.   margin-right: 10px;
  29. }
  30.  
  31. .post-user-info {
  32.   flex-grow: 1;
  33. }
  34.  
  35. .post-user-info strong {
  36.   display: block;
  37. }
  38.  
  39. .post-image img {
  40.   width: 100%;
  41.   display: block;
  42. }
  43.  
  44. .post-content {
  45.   padding: 15px;
  46. }
  47.  
  48. .likes {
  49.   font-weight: bold;
  50. }
  51.  
  52. .caption {
  53.   margin: 5px 0;
  54. }
  55.  
  56. .comment {
  57.   border-top: 1px solid #eee;
  58.   padding: 10px 15px;
  59.   font-size: 14px;
  60. }
  61.  
  62. .comment strong {
  63.   font-weight: bold;
  64. }
  65.  
  66. .comment-input {
  67.   display: flex;
  68.   border-top: 1px solid #ddd;
  69.   padding: 10px 15px;
  70. }
  71.  
  72. .comment-input input {
  73.   flex-grow: 1;
  74.   padding: 8px;
  75.   border: 1px solid #ccc;
  76.   border-radius: 20px;
  77. }
  78.  
  79. .comment-input button {
  80.   margin-left: 10px;
  81.   background-color: #1877f2;
  82.   color: white;
  83.   border: none;
  84.   padding: 8px 12px;
  85.   border-radius: 20px;
  86.   cursor: pointer;
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement