27 lines
261 B
CSS
27 lines
261 B
CSS
|
|
body {
|
|||
|
|
}
|
|||
|
|
.button
|
|||
|
|
{
|
|||
|
|
width:100%;
|
|||
|
|
height:40px;
|
|||
|
|
font-weight:bold;
|
|||
|
|
}
|
|||
|
|
.textbox
|
|||
|
|
{
|
|||
|
|
width:100%;
|
|||
|
|
height:25px;
|
|||
|
|
}
|
|||
|
|
.label
|
|||
|
|
{
|
|||
|
|
width:100%;
|
|||
|
|
text-align:center;
|
|||
|
|
}
|
|||
|
|
.foot
|
|||
|
|
{
|
|||
|
|
position:fixed;
|
|||
|
|
left:0;
|
|||
|
|
right:0;
|
|||
|
|
bottom:0;
|
|||
|
|
z-index:100;
|
|||
|
|
}
|