19 lines
299 B
CSS
19 lines
299 B
CSS
#password {
|
|
min-width: 100%;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
min-height: 50px;
|
|
height: 50px;
|
|
max-height: 250px;
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
#password::selection {
|
|
background-color: #ffb7b7;
|
|
}
|
|
|
|
#password::-moz-selection {
|
|
background-color: #ffb7b7;
|
|
}
|