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




                                    
 

                 

                     

 

                   
                                     
 
 
             
                    





                                 
                                            





                            

                              


   
          
                
                                 
                  
               
 
         
              

   



                
 
         
        

                    
 
        

                      
 


                              
 


                          

                      
 

              
 


                        
 






                              
       
     

   
 


                        
 


                                
 

                                         
 












                                                 

     
 
 


                              
 



                      
 


                  
 

                

 
                               



                                 


                             
                





















                                               
                                      





                                                             
                                        
     

   
@use '_variables' as *;
@use '_mixins' as *;

@import '~bootstrap/scss/functions';
@import '~bootstrap/scss/variables';

label {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

input[type=text],
input[type=email] {
  @include peertube-input-text(100%);
}

.modal-body {
  text-align: start;

  .forgot-password-instructions {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: $small-view) {
  .modal-body {
    #forgot-password-email {
      width: 100%;
    }
  }

  .modal-footer .grey-button {
    display: none;
  }
}

.wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;

  > div {
    flex: 1 1;
  }

  form {
    width: 100%;
  }
}

.wrapper,
.alert {
  max-width: 1200px;
}

.alert {
  margin: 0 auto 30px;
}

.login-form-and-externals {
  @include margin-left(10px);
  @include margin-right(10px);

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 450px;
  margin-bottom: 40px;

  form {
    margin: 0;

    input[type=submit] {
      width: 100%;
    }

    .additional-links {
      display: flex;
      justify-content: center;
      margin: 20px 0 30px;

      .link-orange {
        margin: 0 15px;
      }
    }
  }
}

.external-login-blocks {
  min-width: 200px;
  text-align: center;

  .block-title {
    font-weight: $font-semibold;
  }

  .external-login-block {
    @include disable-default-a-behaviour;

    cursor: pointer;
    border: 1px solid #d1d7e0;
    border-radius: 5px;
    color: pvar(--mainForegroundColor);
    margin: 10px 10px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 35px;
    min-width: 100px;

    &:hover {
      background-color: rgba(209, 215, 224, 0.5);
    }
  }
}

.instance-information {
  @include margin-left(10px);
  @include margin-right(10px);

  max-width: 600px;
  min-width: 350px;
  margin-bottom: 40px;
}

.terms-anchor {
  display: inline;
}

.terms-link {
  display: none;
}

@mixin column-reverse-display {
  flex-direction: column-reverse;

  .login-form-and-externals,
  .instance-information {
    @include margin-left(0);
    @include margin-right(0);

    width: 100%;
    max-width: 450px;
    min-width: unset;
    align-self: center;
  }

  .instance-information {
    ::ng-deep .accordion {
      display: none;
    }
  }

  .terms-anchor {
    display: none;
  }

  .terms-link {
    display: inline;
  }
}

@media screen and (max-width: breakpoint(md)) {
  .wrapper {
    @include column-reverse-display();
  }
}

@media screen and (max-width: breakpoint(md) + $menu-width) {
  :host-context(.main-col:not(.expanded)) {
    .wrapper {
      @include column-reverse-display();
    }
  }
}