Ghost_Ruby_Theme/assets/css/general/form.css

18 lines
365 B
CSS
Raw Permalink Normal View History

2019-04-29 19:46:11 +03:00
input[type="text"],
input[type="password"],
input[type="email"] {
2020-10-19 04:07:40 +03:00
padding: 0 15px;
2020-09-28 06:05:46 +03:00
height: 50px;
outline: none;
2020-10-19 04:07:40 +03:00
border: 1px solid var(--mid-gray-color);
font-size: 16px;
border-radius: 5px;
appearance: none;
}
2020-09-24 05:18:34 +03:00
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
2020-09-28 06:05:46 +03:00
border-color: var(--primary-color);
}