14 lines
192 B
CSS
14 lines
192 B
CSS
|
li {
|
||
|
cursor: crosshair;
|
||
|
}
|
||
|
li:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
#box {
|
||
|
position: fixed;
|
||
|
left: 0px;
|
||
|
top: 0px;
|
||
|
width: 10px;
|
||
|
height: 10px;
|
||
|
background-color: hotpink;
|
||
|
}
|