Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

_profile.scss 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. .app-link {
  2. p {
  3. margin-bottom: 30px;
  4. }
  5. .btn {
  6. min-width: 150px;
  7. }
  8. }
  9. .user-info {
  10. margin: 15px 0px;
  11. span {
  12. margin-bottom: 5px;
  13. display : inline-block;
  14. }
  15. }
  16. .welcome-profile {
  17. // background: $primary !important;
  18. .card-body {
  19. // background: $primary !important;
  20. img {
  21. border : 4px solid $white;
  22. border-radius: 100px;
  23. width : 60px;
  24. }
  25. // text-align: center;
  26. h4 {
  27. // color : $white;
  28. margin-top: 10px;
  29. font-size : 18px;
  30. }
  31. p {
  32. // color : $white;
  33. opacity : 0.75;
  34. // max-width : 300px;
  35. // margin : 0 auto;
  36. }
  37. ul {
  38. text-align: left;
  39. li {
  40. padding : 15px 0px;
  41. border-bottom: 1px solid $border-color;
  42. &:last-child {
  43. border : 0px;
  44. padding-bottom: 0px;
  45. }
  46. a {
  47. // color : darken($white, 5%);
  48. display : flex;
  49. align-items: center;
  50. transition : all 0.25 ease-in-out;
  51. span {
  52. // background : $primary;
  53. padding : 5px;
  54. border-radius : 50px;
  55. width : 30px;
  56. height : 30px;
  57. display : inline-flex;
  58. align-items : center;
  59. justify-content: center;
  60. margin-right : 10px;
  61. transition : all 0.25 ease-in-out;
  62. &.verified {
  63. background: $success;
  64. color : $white;
  65. }
  66. &.not-verified {
  67. background: $primary;
  68. color : $white;
  69. }
  70. }
  71. }
  72. }
  73. }
  74. }
  75. }
  76. /////