Ver código fonte

Add new style for text inputs.

Lee Morgan 5 anos atrás
pai
commit
30c98f1075
1 arquivos alterados com 19 adições e 0 exclusões
  1. 19 0
      views/shared/css/general.css

+ 19 - 0
views/shared/css/general.css

@@ -17,6 +17,25 @@ button::-moz-focus-inner{
     border: 0;
 }
 
+input[type=text],
+input[type=email],
+input[type=password],
+input[type=number]{
+    border-radius: 0;
+    border: none;
+    border-bottom: 1px solid black;
+    font-size: 18px;
+    padding: 0 0 1px 5px;
+}
+
+input[type=text]:focus,
+input[type=email]:focus,
+input[type=password]:focus,
+input[type=number]:focus{
+    outline: none;
+    border-bottom: 2px solid rgb(255, 99, 107);
+}
+
 .link{
     cursor: pointer;
     color: gray;