28 lines
323 B
CSS
28 lines
323 B
CSS
|
|||
|
|
tr.flowerlist:hover td {
|
||
|
|
background:#eee;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
.flowerlist {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
tr.flowerlist a {
|
||
|
|
color: inherit; /* blue colors for links too */
|
||
|
|
text-decoration: inherit; /* no underline */
|
||
|
|
}
|
||
|
|
|
||
|
|
td.white {
|
||
|
|
color: #eee
|
||
|
|
}
|
||
|
|
|
||
|
|
td.left {
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
td.right {
|
||
|
|
text-align: right;
|
||
|
|
}
|