28 lines
336 B
CSS
28 lines
336 B
CSS
|
|
|
||
|
|
#wrapper {
|
||
|
|
font: 16px/18px Calibri;
|
||
|
|
margin: 0 auto;
|
||
|
|
width: 200px;
|
||
|
|
text-align: center
|
||
|
|
}
|
||
|
|
|
||
|
|
#wrapper div {
|
||
|
|
background: #28b7ff;
|
||
|
|
padding: 15px;
|
||
|
|
margin: 10px;
|
||
|
|
text-align: center
|
||
|
|
}
|
||
|
|
|
||
|
|
label {
|
||
|
|
font-weight: 700;
|
||
|
|
margin: 25px 0 5px;
|
||
|
|
display: block
|
||
|
|
}
|
||
|
|
|
||
|
|
select {
|
||
|
|
width: 100%;
|
||
|
|
height: 30px;
|
||
|
|
outline: 0;
|
||
|
|
cursor: pointer
|
||
|
|
}
|