Skip to content
Snippets Groups Projects
edit-machine.component.scss 1.29 KiB
Newer Older
// Importando os estilos globais
@import '../../sass/styles';

// Letras 
.photos-page {
    hyphens: auto;
    font-family: $font-default;
    color: $text-dark;
  
    h2 {
      font-family: $font-header;
      font-weight: bolder;
      font-size: 36px;
    }
  
    h3 {
      padding: 10px;
    }
    
    h4 {
      font-size: 22px;
      margin-top: 30px;
      font-weight: bolder;
    }

    label {
      font-size: 18px;
      width: 100%;
    }
  }

// Botao "Mais Informacoes"
.btn {
    border-width: 4px;
    border-radius: 8px;
    cursor: pointer;
    color: $text-dark;
    display: inline-block;
    font-size: 18px;
    font-family: $font-default;

  }

//Tag para o botao "Mais informacoes"
.more_text {
  display: none;
}

// Imagem 
.img {
    max-width: 100%;
    max-height: 100%;
    width: 270px;
    height: 270px;
    align-items: center;
    border-radius: 50%;
    padding: 10px;
  }
  

//Card que encapsula a imagem
.photos-btn {
    align-items: center;
    background-color: #b0cfed;
    border-radius: 3%;
    padding: 5px;
}

//Formulario 
.form-style {
    background: #c5dcf2;
    border-radius: 3%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom-color: $text-dark;
    margin-top: 20px;
    width: 100%;
} 

input {
  color:$text-dark;
  }