blob: 3d0f694801cbca108dea3dee9e4a58375ed8d2e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
a {
font-weight: bold;
text-decoration: none;
&:hover { text-decoration: underline; }
body.firefox & { font-weight: normal; }
}
#main {
color: black;
a {
font-weight: bold;
&:hover { color: red; }
}
}
|