mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 19:05:01 -05:00
Add CSS for email fields
This commit is contained in:
parent
5b29e2656e
commit
870a9b6be5
1 changed files with 6 additions and 3 deletions
|
@ -140,7 +140,8 @@ body {
|
||||||
form input[type="text"],
|
form input[type="text"],
|
||||||
form input[type="username"],
|
form input[type="username"],
|
||||||
form input[type="password"],
|
form input[type="password"],
|
||||||
form input[type="url"] {
|
form input[type="url"],
|
||||||
|
form input[type="email"] {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -380,7 +381,8 @@ kbd {
|
||||||
form input[type="text"],
|
form input[type="text"],
|
||||||
form input[type="username"],
|
form input[type="username"],
|
||||||
form input[type="password"],
|
form input[type="password"],
|
||||||
form input[type="url"] {
|
form input[type="url"],
|
||||||
|
form input[type="email"] {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
background: #131618;
|
background: #131618;
|
||||||
border: 1px solid #495057;
|
border: 1px solid #495057;
|
||||||
|
@ -389,7 +391,8 @@ kbd {
|
||||||
form input[type="text"]:focus,
|
form input[type="text"]:focus,
|
||||||
form input[type="username"]:focus,
|
form input[type="username"]:focus,
|
||||||
form input[type="password"]:focus,
|
form input[type="password"]:focus,
|
||||||
form input[type="url"]:focus {
|
form input[type="url"]:focus,
|
||||||
|
form input[type="email"]:focus {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
border-color: #3897ff;
|
border-color: #3897ff;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue