62 lines
927 B
CSS
Executable File
62 lines
927 B
CSS
Executable File
@charset "utf-8";
|
|
/* CSS Document */
|
|
|
|
.anMenu {
|
|
position: absolute;
|
|
left: 100;
|
|
top: 100;
|
|
height: auto;
|
|
width: 500px;
|
|
border: 1px solid #000000;
|
|
}
|
|
|
|
.anMenuHeader {
|
|
position: relative;
|
|
width: auto;
|
|
height: 16px;
|
|
padding: 3px;
|
|
background-color: #666666;
|
|
font: Arial, Helvetica, sans-serif;
|
|
color: #FFFFFF;
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
cursor: move;
|
|
width: auto;
|
|
}
|
|
|
|
.anMenuHeader img {
|
|
position: absolute;
|
|
top: 3;
|
|
right: 3;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.anMenuBody {
|
|
width: auto;
|
|
height: auto;
|
|
padding: 5px;
|
|
background-color: #FFFFFF;
|
|
font: Arial, Helvetica, sans-serif;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.anMenuBody div {
|
|
height: 25px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.anMenuBody div span {
|
|
display:block;
|
|
}
|
|
|
|
.anMenuFooter {
|
|
width: auto;
|
|
height: 20px;
|
|
padding: 3px;
|
|
border-top: 1px dotted #666666;
|
|
background-color: #CCCCCC;
|
|
font: Arial, Helvetica, sans-serif;
|
|
color: #FFFFFF;
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
} |