| 1 |
/** |
| 2 |
* ThinkRank Breadcrumb Styles |
| 3 |
* |
| 4 |
* Frontend styles for breadcrumb navigation. |
| 5 |
* This file lives in static/ to survive webpack builds. |
| 6 |
* |
| 7 |
* @package ThinkRank |
| 8 |
* @since 1.0.0 |
| 9 |
*/ |
| 10 |
|
| 11 |
.thinkrank-breadcrumbs { |
| 12 |
padding: 0.75rem 0; |
| 13 |
font-size: 0.875rem; |
| 14 |
color: #666; |
| 15 |
} |
| 16 |
|
| 17 |
.thinkrank-breadcrumbs a { |
| 18 |
color: #2271b1; |
| 19 |
text-decoration: none; |
| 20 |
} |
| 21 |
|
| 22 |
.thinkrank-breadcrumbs a:hover { |
| 23 |
text-decoration: underline; |
| 24 |
} |
| 25 |
|
| 26 |
.thinkrank-breadcrumbs .breadcrumb-current { |
| 27 |
color: #1d2327; |
| 28 |
font-weight: 500; |
| 29 |
} |
| 30 |
|
| 31 |
.thinkrank-breadcrumbs .breadcrumb-separator { |
| 32 |
margin: 0 0.5rem; |
| 33 |
color: #999; |
| 34 |
} |
| 35 |
|