OOOOPS. Your browser seems to be too old for this. Please update your browser.
Teutonic CSS
Use it

File

Here is some basic styling for a file upload field. Apply the two classes: .input and .file to the HTML element to achieve alignment with other form elements.

This looks best in WebKit/Blink but degrades gracefully under other browsers.

Syntax: input[type=file].input.file
SCSS: _input-file.scss _forms.scss

Only file class

With input and file class

<div class="read_l">
  <h4 class="ma-b_xs">
    Only file class
  </h4>
  <input type="file" name="file" id="file" class="file">
  <h4 class="ma-b_xs ma-t_m">
    With input and file class
  </h4>
  <input type="file" name="file" id="file" class="file input">
</div>