_profile.scss 485 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // Pages: Profile
  3. //
  4. .profile-user-img {
  5. border: 3px solid $gray-500;
  6. margin: 0 auto;
  7. padding: 3px;
  8. width: 100px;
  9. }
  10. .profile-username {
  11. font-size: 21px;
  12. margin-top: 5px;
  13. }
  14. .post {
  15. border-bottom: 1px solid $gray-500;
  16. color: #666;
  17. margin-bottom: 15px;
  18. padding-bottom: 15px;
  19. &:last-of-type {
  20. border-bottom: 0;
  21. margin-bottom: 0;
  22. padding-bottom: 0;
  23. }
  24. .user-block {
  25. margin-bottom: 15px;
  26. width: 100%;
  27. }
  28. .row {
  29. width: 100%;
  30. }
  31. }