2
0

team.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. @import "colors";
  2. @import "breakpoints";
  3. main#team {
  4. width: 272px;
  5. margin-left: auto;
  6. margin-right: auto;
  7. .current-members {
  8. margin-bottom: 24px;
  9. .current-member {
  10. width: 100%;
  11. height: 86px;
  12. position: relative;
  13. margin-bottom: 24px;
  14. .picture {
  15. width: 64px;
  16. height: 64px;
  17. margin-top: 11px;
  18. position: relative;
  19. float: left;
  20. z-index: 1;
  21. border-radius: 100%;
  22. box-shadow: 0 3px 6px $musare_shadow_color;
  23. background-color: white;
  24. }
  25. .lines {
  26. z-index: 1;
  27. position: relative;
  28. margin-left: 10px;
  29. overflow: hidden;
  30. max-width: calc(100% - 74px);
  31. float: left;
  32. .name, .line {
  33. display: block;
  34. }
  35. .name {
  36. margin-top: 5px;
  37. text-align: center;
  38. font-size: 17px;
  39. line-height: 22px;
  40. font-weight: 500;
  41. }
  42. .line {
  43. font-size: 12px;
  44. line-height: 16px;
  45. b {
  46. font-weight: 500;
  47. }
  48. span {
  49. font-weight: 100;
  50. }
  51. }
  52. }
  53. .background {
  54. height: 100%;
  55. width: calc(100% - 32px);
  56. background-color: $musare_color_white;
  57. border: 1px solid hsla(0, 0, 29, .3); //TODO Add to colors
  58. box-shadow: 0 3px 6px $musare_shadow_color;
  59. position: absolute;
  60. right: 0;
  61. top: 0;
  62. }
  63. }
  64. }
  65. .old-members {
  66. .old-member {
  67. width: 100%;
  68. height: 70px;
  69. position: relative;
  70. margin-bottom: 24px;
  71. .picture {
  72. width: 64px;
  73. height: 64px;
  74. margin-top: 11px;
  75. position: relative;
  76. float: left;
  77. z-index: 1;
  78. border-radius: 100%;
  79. background-color: $musare_color_primary_blue;
  80. border: 1px solid hsla(0, 0, 29, .5); //TODO Add to colors
  81. box-shadow: 0 3px 6px $musare_shadow_color;
  82. .initial {
  83. font-size: 51px;
  84. line-height: 59px;
  85. color: #EFEFEF; //Add to colors or change color
  86. text-align: center;
  87. display: block;
  88. }
  89. }
  90. .lines {
  91. z-index: 1;
  92. position: relative;
  93. margin-left: 10px;
  94. overflow: hidden;
  95. max-width: calc(100% - 74px);
  96. float: left;
  97. .name, .line {
  98. display: block;
  99. }
  100. .name {
  101. margin-top: 5px;
  102. text-align: center;
  103. font-size: 17px;
  104. line-height: 22px;
  105. font-weight: 500;
  106. }
  107. .line {
  108. font-size: 12px;
  109. line-height: 16px;
  110. b {
  111. font-weight: 500;
  112. }
  113. span {
  114. font-weight: 100;
  115. }
  116. }
  117. }
  118. .background {
  119. height: 100%;
  120. width: calc(100% - 32px);
  121. background-color: $musare_color_white;
  122. border: 1px solid hsla(0, 0, 29, .3); //TODO Add to colors
  123. box-shadow: 0 3px 6px $musare_shadow_color;
  124. position: absolute;
  125. right: 0;
  126. top: 0;
  127. }
  128. }
  129. }
  130. h2 {
  131. font-size: 20px;
  132. line-height: 27px;
  133. margin-bottom: 16px;
  134. text-align: center;
  135. }
  136. }