41 lines
773 B
CSS
41 lines
773 B
CSS
input, select {
|
|
-webkit-box-sizing: border-box;
|
|
-ms-box-sizing:content-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
article{
|
|
width: 50%;
|
|
}
|
|
.input{
|
|
width: 300px;
|
|
table-layout: fixed;
|
|
border-collapse: collapse;
|
|
}
|
|
a.button{
|
|
display: inline-block;
|
|
margin:2px auto;
|
|
background-color: #586e75;
|
|
text-align: center;
|
|
color: white;
|
|
width:100%;
|
|
text-align: center;
|
|
padding: 2px;
|
|
border: 1px solid #073642;
|
|
|
|
}
|
|
a.button:hover{
|
|
background-color: #073642;
|
|
}
|
|
.buttons
|
|
{
|
|
background-color: #586e75;
|
|
width:100%;
|
|
color: white;
|
|
padding: 2px;
|
|
border: 1px solid #073642;
|
|
}
|
|
input[type='text'],input[type='password'],input[type='email'],input[type='tel'],input[type='number'],input[type='date'], select
|
|
{
|
|
width:100%;
|
|
} |