opinion.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .opinion {
  2. &__container {
  3. float: right;
  4. width: 33%;
  5. margin-left: 40px;
  6. background: #ebebeb;
  7. padding: 15px 10px;
  8. box-sizing: border-box;
  9. border-radius: 20px 0 0 0;
  10. &:before,
  11. &:after {
  12. display: block;
  13. clear: both;
  14. content: '';
  15. }
  16. }
  17. &__title {
  18. font-size: 20px;
  19. font-family: $fontcuprum;
  20. color: #004d7b;
  21. line-height: 1.2;
  22. }
  23. &__text {
  24. font-size: 14px;
  25. font-family: $fontopensans;
  26. color: #404040;
  27. line-height: 1.714;
  28. margin-bottom: 10px;
  29. &:before,
  30. &:after {
  31. display: block;
  32. clear: both;
  33. content: '';
  34. }
  35. }
  36. &__person-info {
  37. width: calc(100% - 72px);
  38. vertical-align: top;
  39. float: left;
  40. }
  41. &__person-img {
  42. margin-right: 10px;
  43. border-radius: 50%;
  44. width: 62px;
  45. height: 62px;
  46. float: left;
  47. }
  48. &__person-name {
  49. font-size: 17px;
  50. font-family: $fontcuprum;
  51. color: #004d7b;
  52. line-height: 1.2;
  53. margin: 0 0 5px;
  54. }
  55. &__person-job {
  56. font-size: 13px;
  57. font-family: $fontopensans;
  58. color: #a2a1a1;
  59. line-height: 1.2;
  60. margin-bottom: 10px !important;
  61. }
  62. }