profile.styl 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. .profile-block
  2. padding: 15px 20px
  3. border-bottom: 1px solid color-border
  4. &:last-child
  5. border-bottom: none
  6. #profile
  7. display: none
  8. @media mq-normal
  9. display: block
  10. column(profile-column)
  11. .inner
  12. @extend $block
  13. margin-top: block-margin
  14. background: white
  15. .base-info
  16. #avatar
  17. display: block
  18. margin: 10px auto 20px
  19. width: profile-avatar-size
  20. height: profile-avatar-size
  21. #name, #title, #location
  22. display: block
  23. text-align: center
  24. #name
  25. font-size: 20px
  26. font-weight: 600
  27. #location
  28. font-size: font-size - 2
  29. margin-top: 5px
  30. color: color-default + #444
  31. .fa
  32. margin-right: 5px
  33. #follow
  34. color: white
  35. width: 150px
  36. height: 40px
  37. display: block
  38. font-size: 14px
  39. line-height: 40px
  40. text-align: center
  41. margin: 20px auto 10px
  42. background: #38b7ea
  43. border-radius: 20px
  44. transition: 0.2s ease
  45. &:hover
  46. background: #38b7ea + #111
  47. .article-info
  48. clearfix()
  49. padding: 0px
  50. .article-info-block
  51. width: 50%
  52. float: left
  53. padding: 20px 15px
  54. text-align: center
  55. box-sizing: border-box
  56. font-size: font-size + 6px
  57. span
  58. display: block
  59. font-size: font-size
  60. text-transform: uppercase
  61. &:first-child
  62. border-right: 1px solid color-border
  63. .contact-info
  64. .contact-list
  65. width: 100%
  66. td
  67. text-align: center
  68. font-size: font-size + 10px
  69. a
  70. position: relative
  71. transition: 0.2s ease
  72. color: color-default + #333
  73. &:hover
  74. color: color-default
  75. &:after
  76. right: -50%
  77. top: -41px
  78. color: white
  79. background: #333
  80. font-size: 14px
  81. content: attr(title)
  82. display: block
  83. padding: 5px 15px
  84. position: absolute
  85. white-space: nowrap
  86. border-radius: 2px
  87. text-transform: uppercase
  88. box-shadow: 0 0 2px rgba(0,0,0,0.2)
  89. z-index: 1
  90. &:before
  91. top: -12px
  92. right: 8px
  93. border: solid
  94. border-color: #333 transparent
  95. border-width: 5px 5px 0 5px
  96. content: ""
  97. display: block
  98. position: absolute
  99. z-index: 2