66 lines
735 B
CSS
Executable file
66 lines
735 B
CSS
Executable file
#text {
|
|
display: block;
|
|
height: 100px;
|
|
width: 456px;
|
|
}
|
|
|
|
#table th {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#table td {
|
|
width: 150px;
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
vertical-align: bottom;
|
|
padding-top: 5px;
|
|
padding-bottom: 12px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#table .nw {
|
|
background: #999;
|
|
}
|
|
|
|
#table .n {
|
|
background: #03f;
|
|
color: #fff;
|
|
}
|
|
|
|
#table .ne {
|
|
background: #ff6;
|
|
}
|
|
|
|
#table .w {
|
|
background: #ff0;
|
|
}
|
|
|
|
#table .c {
|
|
background: #60c;
|
|
color: #fff;
|
|
}
|
|
|
|
#table .e {
|
|
background: #09f;
|
|
color: #fff;
|
|
}
|
|
|
|
#table .sw {
|
|
background: #963;
|
|
color: #fff;
|
|
}
|
|
|
|
#table .s {
|
|
background: #f60;
|
|
color: #fff;
|
|
}
|
|
|
|
#table .se {
|
|
background: #0c3;
|
|
color: #fff;
|
|
}
|
|
|
|
#table .highlight {
|
|
background: red;
|
|
}
|