Skip to content
Snippets Groups Projects
Select Git revision
  • 6ea64d690ab8b989dc7782f5e97af1d2cbb9cd20
  • main default
  • tp3
  • tp2
  • tp1
  • tp3-correction
  • tp2-correction
  • tp1-correction
  • admins
9 results

setup.md

Blame
  • Forked from an inaccessible project.
    login.component.scss 873 B
    @import '~sass/variables';
    @import '~sass/mixins';
    
    .content {
      display: flex;
      flex-flow: column nowrap;
      align-items: center;
      height: stretch;
      background: $color-light-gray;
    }
    
    .login-form {
      width: 100%;
      max-width: 30em;
      background: white;
      border: 1px solid lightgray;
      border-radius: 8px;
      padding: 3em;
      margin: 3em;
      box-sizing: border-box;
    }
    
    .logo {
      width: 100%;
      max-width: 20em;
      height: auto;
      display: block;
      margin: auto;
    }
    
    .form-group {
      display: flex;
      flex-flow: column;
    }
    
    .has-error {
      input {
        @include style-danger;
      }
    }
    #login-btn {
      margin-top: 1em;
    }
    
    .form-control {
      position: relative;
      font-size: 16px;
      height: auto;
      padding: 10px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
    }
    
    .block {
      width: 100%;
    }
    
    .background {
      background-color: rgb(3, 180, 180);
    }