_person-page.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .person-page {
  2. &__title {
  3. margin: 20px 0 10px;
  4. font-family: $fontcuprum;
  5. font-size: 27px;
  6. font-weight: 700;
  7. }
  8. &__text-info {
  9. font-size: 14px;
  10. }
  11. &__awards {
  12. display: flex;
  13. flex-direction: row;
  14. margin: 20px -10px;
  15. }
  16. &__award {
  17. display: flex;
  18. flex-direction: row;
  19. align-content: center;
  20. justify-content: flex-start;
  21. vertical-align: middle;
  22. align-items: center;
  23. width: 200px;
  24. margin: 0 10px;
  25. }
  26. &__award-name {
  27. display: block;
  28. margin-left: 10px;
  29. color: #75787b;
  30. font-size: 14px;
  31. }
  32. &__award-image {
  33. display: block;
  34. }
  35. &__category {
  36. color: #75787b;
  37. padding-top: 1px;
  38. font-family: $fontcuprum;
  39. padding-bottom: 8px;
  40. font-size: 20px;
  41. font-weight: 600;
  42. }
  43. &__media {
  44. border: none !important;
  45. padding-top: 0 !important;
  46. }
  47. &__person-photo {
  48. position: relative;
  49. }
  50. &__work-years {
  51. position: absolute;
  52. background: #ebebeb;
  53. padding: 5px 10px;
  54. border-radius: 0 10px 0 10px;
  55. bottom: 0;
  56. right: 18px;
  57. width: 32px;
  58. height: 55px;
  59. text-align: center;
  60. font-size: 13px;
  61. color: #929292;
  62. & > span {
  63. font-size: 18px;
  64. color: #004d7b;
  65. }
  66. }
  67. }