comments.less 990 B

12345678910111213141516171819202122232425262728293031323334353637
  1. section.comments{
  2. padding: 30px 0;
  3. border-top: 1px solid @border-gray;
  4. .comments-list{
  5. .comment-item{
  6. margin-bottom: 15px;
  7. .message{
  8. color: #3e3e3e;
  9. font: 14px/18px "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
  10. }
  11. .meta{
  12. color: @text-gray;
  13. a.answer{
  14. color: #5a748b;
  15. }
  16. }
  17. }
  18. }
  19. form{
  20. textarea{
  21. border-radius: 0;
  22. border: @border-gray;
  23. background-color: rgba(59,85,115,.08);
  24. font: 14px/18px "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
  25. }
  26. button{
  27. padding: 0 25px;
  28. height: 41px;
  29. background-color: rgba(59,85,115,.08);
  30. border-radius: 11px;
  31. color: #3b5573;
  32. outline: none;
  33. border: none;
  34. font: 14px/18px "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
  35. }
  36. }
  37. }