aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+accounts/accounts.component.scss
blob: c1cf53f3a70e587f042509cf3ee08943a1e9d442 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                     







                          

 

                                    

 

                                         
 



                                 











                            



               







































































                                                                                  
 

                                             

















                            

   
@import '_variables';
@import '_mixins';
@import '_actor';
@import '_miniature';

.root {
  --myGlobalPadding: 60px;
  --myImgMargin: 30px;
  --myFontSize: 16px;
  --myGreyFontSize: 16px;
}

.section-label {
  @include section-label-responsive;
}

.links {
  @include fluid-videos-miniature-layout;

  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
}

my-user-moderation-dropdown,
.badge {
  margin-left: 10px;

  position: relative;
  top: 3px;
}

.badge {
  font-size: 13px;
}

.copy-button {
  border: none;
}

.account-info {
  display: grid;
  grid-template-columns: 1fr min-content;
  grid-template-rows: auto auto;

  background-color: pvar(--submenuColor);
  margin-bottom: 45px;
  padding: var(--myGlobalPadding) var(--myGlobalPadding) 0 var(--myGlobalPadding);
  font-size: var(--myFontSize);
}

.account-avatar-row {
  @include avatar-row-responsive(var(--myImgMargin), var(--myGreyFontSize));
}

.description {
  grid-column: 1 / 3;
}

.created-at {
  margin-top: 15px;
  color: pvar(--greyForegroundColor);
  padding-bottom: 60px;
}

.show-more {
  @include show-more-description;

  display: none;
  text-align: center;
}

.buttons {
  grid-column: 2;
  grid-row: 1;

  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;

  > *:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: $small-view) {
  .root {
    --myGlobalPadding: 45px;
    --myChannelImgMargin: 15px;
  }

  .account-info {
    display: block;
    padding-bottom: 60px;
  }

  .description:not(.expanded) {
    max-height: 70px;

    @include fade-text(30px, pvar(--submenuColor));
  }

  .show-more {
    display: block;
  }

  .buttons {
    justify-content: center;
  }
}

@media screen and (max-width: $mobile-view) {
  .root {
    --myGlobalPadding: 15px;
    --myFontSize: 14px;
    --myGreyFontSize: 13px;
  }

  .account-info {
    display: block;
    padding-bottom: 30px;
  }

  .links {
    margin: auto !important;
    width: min-content;
  }

  .show-more {
    margin-bottom: 30px;
  }
}