12345678910111213141516171819202122232425262728293031323334353637 |
- section.comments{
- padding: 30px 0;
- border-top: 1px solid @border-gray;
- .comments-list{
- .comment-item{
- margin-bottom: 15px;
- .message{
- color: #3e3e3e;
- font: 14px/18px "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
- }
- .meta{
- color: @text-gray;
- a.answer{
- color: #5a748b;
- }
- }
- }
- }
- form{
- textarea{
- border-radius: 0;
- border: @border-gray;
- background-color: rgba(59,85,115,.08);
- font: 14px/18px "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
- }
- button{
- padding: 0 25px;
- height: 41px;
- background-color: rgba(59,85,115,.08);
- border-radius: 11px;
- color: #3b5573;
- outline: none;
- border: none;
- font: 14px/18px "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
- }
- }
- }
|