Skip to content

Commit

Permalink
Update kryeion.css
Browse files Browse the repository at this point in the history
  • Loading branch information
stitchng committed Jan 9, 2018
1 parent c1f77a0 commit 69911de
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion src/kryeion.css
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,16 @@
*overflow: visible;
}

input[type="password"]:invalid,
input[type="text"]:invalid,
input[type="email"]:invalid {
border: 1px solid #F2000B;
color: #F2000B;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}

input[type="checkbox"],
input[type="radio"] {
padding: 0;
Expand Down Expand Up @@ -359,7 +369,9 @@
::-webkit-input-placeholder, /* Chrome 4+/Safri/Opera 15+ */
:-moz-placeholder, /* Firefox 18- */
::-moz-placeholder, /* Firefox 19+ */
:-ms-input-placeholder { /* Edge/IE 10+ */
:-ms-input-placeholder, /* Edge/IE 10 */
::-ms-input-placeholder, /* Edge 15+/IE 11 */
::placeholder {
color:#e4e4e4;
}

Expand Down Expand Up @@ -749,6 +761,18 @@
font-weight:bold;
}

/* Images */

.image-bicubic {
-ms-interpolation-mode: bicubic;
image-rendering: optimizeQuality;
}

.image-nearest {
-ms-interpolation-mode: nearest-neighbor;
image-rendering: optimizedSpeed;
}

/* Stylish Heading / Content Rule */

.kr-hr {
Expand Down

0 comments on commit 69911de

Please sign in to comment.