forms.css

68 lines | 1.623 kB Blame History Raw Download
fieldset {
  border: none;
}

input[type="text"],
input[type="password"] {
    font-size: 1.1em;
    padding: 0 0.545454545454545em; /* 0 6px */
    min-width: 18.1818181818182em; /* 200px */
    height: 2.18181818181818em; /* 24px */
    border: 1px #b6b6b6 solid;
    border-radius: 2px;
    box-shadow: inset 0px 2px 2px rgba(0,0,0,0.1);
    color: #333;
}

input[type="text"]:hover,
input[type="password"]:hover {
  border-color: #62afdb;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #62afdb;
  box-shadow: #62afdb 0 0 5px;
}

input[type="submit"] {
    font-size: 1.3em;
    padding: 0.30769230769231em 1.07692307692308em; /* 4px 14px */
    border: 1px #21799e solid;
    border-radius: 2px;
    background-image: linear-gradient(top, #00A9EC 0%, #009BD3 100%);
    background-image: -o-linear-gradient(top, #00A9EC 0%, #009BD3 100%);
    background-image: -moz-linear-gradient(top, #00A9EC 0%, #009BD3 100%);
    background-image: -webkit-linear-gradient(top, #00A9EC 0%, #009BD3 100%);
    background-image: -ms-linear-gradient(top, #00A9EC 0%, #009BD3 100%);
    background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(0.0, #00A9EC),
      color-stop(1,0, #009BD3)
    );
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.04em;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
  background-color: #009BD3;
  background-image: none;
  cursor: pointer;
}

input[type="submit"]:active {
  background-color: #0099d4;
  background-image: none;
  cursor: pointer;
  box-shadow: inset 0 0 5px 3px #0074ae;
}

input[type="checkbox"] {
  margin-right: 0.5em;
}