You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
526 B
25 lines
526 B
/** |
|
* @file |
|
* Site footer — visual styling. |
|
* |
|
* Padding lives in css/layout.css alongside <main>'s page padding |
|
* (footer is a structural region, treated symmetrically with main). |
|
* This file handles the skin: dark surface, light text and links. |
|
*/ |
|
@layer components { |
|
|
|
.footer { |
|
background-color: var(--surface-dark); |
|
color: var(--text-on-dark); |
|
|
|
a { |
|
color: var(--text-on-dark); |
|
} |
|
a:hover, |
|
a.is-active { |
|
color: var(--upei-yellow); |
|
text-decoration: underline; |
|
} |
|
} |
|
|
|
}
|
|
|