mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-04-22 16:47:32 -05:00
47 lines
917 B
CSS
47 lines
917 B
CSS
input[type=text], input[type=password], select, textarea
|
|
{
|
|
display: block;
|
|
border: 1px solid #999999;
|
|
background-color: white;
|
|
box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1) inset;
|
|
width: 200px;
|
|
height: 14px;
|
|
padding: 2px;
|
|
font-size: 10pt;
|
|
font-family: Arial,Helvetica,sans-serif;
|
|
}
|
|
|
|
input[type=text]:focus, input[type=password]:focus, select, textarea:focus,
|
|
input[type=text]:focus, input[type=password]:focus, select, textarea:focus
|
|
{
|
|
|
|
}
|
|
|
|
.pfLabelTextBox
|
|
{
|
|
position: relative;
|
|
font-family: Arial,Helvetica,sans-serif
|
|
}
|
|
|
|
.pfLabelTextBox label
|
|
{
|
|
display: block;
|
|
height: 0;
|
|
overflow: visible;
|
|
position: relative;
|
|
top: 2px; left: 3px;
|
|
color: #cccccc;
|
|
}
|
|
|
|
.pfLabelTextBox input
|
|
{
|
|
display: block;
|
|
background-color: transparent;
|
|
position: relative;
|
|
}
|
|
|
|
.pfLabelTextBox input:focus, .pfLabelTextBox input.hasContent
|
|
{
|
|
background-color: white;
|
|
}
|