๐Ÿ“– Mobile First Web Design /
Module: Form and Inputs

Using file inputs

๐Ÿ“– Mobile First Web Design / Form and Inputs / Using file inputs

Styling file input

input[type="file"] {  
  border: 1px solid #aaa;
  border-radius: 3px;
  background: lighten(YELLOWGREEN, 46%);
  padding-left: 70px;

  &::-webkit-file-upload-button {
    visibility: hidden;        
  }

  &::before {
    content: "Select Photo:";  
    margin-left: -70px;        
    padding: 1.5rem;
    @include greeny-ui;
  }
}


Reference: CSS-Tricks