13 lines
129 B
CSS
13 lines
129 B
CSS
|
a{
|
||
|
font-style: italic;
|
||
|
color: blue;
|
||
|
}
|
||
|
|
||
|
a:visited{
|
||
|
color: green;
|
||
|
}
|
||
|
|
||
|
a:hover{
|
||
|
font-weight: bold;
|
||
|
color: blue;
|
||
|
}
|