forked from WEB-IMB-WS2526/lab-development-imb
26 lines
356 B
CSS
26 lines
356 B
CSS
/* Standard-Link (noch nicht besucht) */
|
|
a:link {
|
|
color: #f56487;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Bereits besuchter Link */
|
|
a:visited {
|
|
color: purple;
|
|
}
|
|
|
|
/* Hover-Effekt */
|
|
a:hover {
|
|
color: red;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Während des Klicks */
|
|
a:active {
|
|
color: orange;
|
|
}
|
|
|
|
/* Tastaturfokus (Tab) */
|
|
a:focus {
|
|
outline: 2px solid violet;
|
|
} |