Initial Commit

This commit is contained in:
mathias 2014-11-11 21:48:29 +02:00
parent f14980ebb5
commit 3400b1414d

View file

@ -204,6 +204,12 @@ input[type="text"] {
background-color: transparent; background-color: transparent;
padding: 7px; padding: 7px;
margin-top: 25px; margin-top: 25px;
-webkit-border-top-right-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
-moz-border-radius-topright: 3px;
-moz-border-radius-bottomright: 3px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
} }
input[type="text"]:hover, input[type="text"]:hover,
@ -220,4 +226,10 @@ input[type="text"]:focus {
padding: 7px; padding: 7px;
display:inline-block; display:inline-block;
margin-top: 25px; margin-top: 25px;
-webkit-border-top-left-radius: 3px;
-webkit-border-bottom-left-radius: 3px;
-moz-border-radius-topleft: 3px;
-moz-border-radius-bottomleft: 3px;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
} }