mirror of
https://github.com/fergalmoran/qrmaker.git
synced 2025-12-22 10:00:50 +00:00
28 lines
551 B
CSS
28 lines
551 B
CSS
<style type="text/css">
|
|
*{
|
|
margin:0;
|
|
padding:0;
|
|
font:bold 12px "Lucida Grande", Arial, sans-serif;
|
|
}
|
|
body {
|
|
padding: 10px;
|
|
}
|
|
|
|
.inputfield{
|
|
width:50%;
|
|
padding:10px;
|
|
outline:none;
|
|
height:36px;
|
|
}
|
|
.focusField{
|
|
border:solid 2px #73A6FF;
|
|
background:#EFF5FF;
|
|
color:#000;
|
|
}
|
|
.idleField{
|
|
background:#EEE;
|
|
color: #6F6F6F;
|
|
border: solid 2px #DFDFDF;
|
|
}
|
|
</style>
|