diff --git a/css/skeleton.ontraport.css b/css/skeleton.ontraport.css index 8dab7a2..50d3566 100644 --- a/css/skeleton.ontraport.css +++ b/css/skeleton.ontraport.css @@ -212,8 +212,26 @@ input[type="search"], input[type="text"], input[type="tel"], input[type="url"], +input[type="date"], input[type="password"], textarea, select { font-size: 15px; } + +input[type="date"] { + height: 38px; + padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */ + background-color: #fff; + border: 1px solid #D1D1D1; + border-radius: 4px; + box-shadow: none; + box-sizing: border-box; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} +input[type="date"]:focus { + border: 1px solid #33C3F0; + outline: 0; +}