23 lines
251 B
CSS
23 lines
251 B
CSS
div#app
|
|
{
|
|
color:#666;
|
|
font-family: Arial;
|
|
}
|
|
|
|
div#app td
|
|
{
|
|
width:50px;
|
|
height:50px;
|
|
border:1px solid #dedede;
|
|
background:#fff;
|
|
margin:1px;
|
|
color:#666;
|
|
text-align: center;
|
|
line-height: 50px;
|
|
}
|
|
|
|
div#app td:hover
|
|
{
|
|
cursor:pointer;
|
|
}
|