HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/blijegasten/blijegasten.be/resources/sass/site/5-Components/_components.input.scss
$inputBorder: 2px;

.c-input {
  @include font-size(m);
  @include border-radius(s);
  width: 100%;
  padding: (space(1) - $inputBorder) space(2);
  color: palette(text);
  border: $inputBorder solid palette(neutral, 300);
  outline: none;
  transition: all 200ms linear;

  .has-error & {
    border-color: palette(warning);
  }

  &:hover {
    border-color: palette(neutral, 400);
  }

  &:focus {
    box-shadow: 0 0 7px -3px rgba(palette(action), 0.75);
    border-color: palette(action);
  }

  @at-root textarea#{&} {
    display: block;
    padding: space(2);
    min-height: space(20) - double($inputBorder);
    line-height: space(3);
    resize: vertical;
  }
}