17 lines
377 B
CSS
17 lines
377 B
CSS
input {
|
|
background-color: rgba(132, 129, 122, 1.0);
|
|
border: none;
|
|
font-size: 1.2em;
|
|
line-height: 2.5em;
|
|
width: 100%;
|
|
text-align: center;
|
|
border-radius: 5px;
|
|
color: var(--primary-text-color);
|
|
}
|
|
|
|
input:focus {
|
|
outline-color: var(--primary-background-color);
|
|
outline-width: 100px;
|
|
/*outline-offset: 1px;*/
|
|
/*outline-style: auto;*/
|
|
} |