mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
20 lines
326 B
CSS
20 lines
326 B
CSS
|
.link {
|
||
|
text-decoration: none;
|
||
|
transition: color .15s ease-in;
|
||
|
}
|
||
|
|
||
|
.link:link,
|
||
|
.link:visited {
|
||
|
transition: color .15s ease-in;
|
||
|
}
|
||
|
.link:hover {
|
||
|
transition: color .15s ease-in;
|
||
|
}
|
||
|
.link:active {
|
||
|
transition: color .15s ease-in;
|
||
|
}
|
||
|
.link:focus {
|
||
|
transition: color .15s ease-in;
|
||
|
outline: 1px dotted currentColor;
|
||
|
}
|