opinion.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. margin-bottom: 10px;
  23. }
  24. &__text {
  25. font-size: 14px;
  26. font-family: $fontopensans;
  27. color: #404040;
  28. line-height: 1.714;
  29. margin-bottom: 10px;
  30. &:before,
  31. &:after {
  32. display: block;
  33. clear: both;
  34. content: '';
  35. }
  36. }
  37. &__person-info {
  38. width: calc(100% - 72px);
  39. vertical-align: top;
  40. float: left;
  41. }
  42. &__person-img {
  43. margin-right: 10px;
  44. border-radius: 50%;
  45. width: 62px;
  46. height: 62px;
  47. float: left;
  48. }
  49. &__person-name {
  50. font-size: 17px;
  51. font-family: $fontcuprum;
  52. color: #004d7b;
  53. line-height: 1.2;
  54. margin: 0 0 5px;
  55. }
  56. &__person-job {
  57. font-size: 13px;
  58. font-family: $fontopensans;
  59. color: #a2a1a1;
  60. line-height: 1.2;
  61. margin-bottom: 10px !important;
  62. }
  63. }