mirror of
https://github.com/TryGhost/Ruby.git
synced 2024-10-30 04:48:33 +02:00
18 lines
349 B
CSS
18 lines
349 B
CSS
input[type="text"],
|
|
input[type="password"],
|
|
input[type="email"] {
|
|
appearance: none;
|
|
border: 1px solid var(--mid-gray-color);
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
height: 50px;
|
|
outline: none;
|
|
padding: 0 15px;
|
|
}
|
|
|
|
input[type="text"]:focus,
|
|
input[type="password"]:focus,
|
|
input[type="email"]:focus {
|
|
border-color: var(--primary-color);
|
|
}
|