22 lines
403 B
CSS
22 lines
403 B
CSS
/* Custom to 7th Ancillary Journal */
|
|
menu {
|
|
background-color: darkred;
|
|
|
|
a,a:visited,a:link,a:focus {
|
|
text-decoration: none;
|
|
color: white;
|
|
transition: color 0.5s;
|
|
}
|
|
a:hover {
|
|
color: yellow;
|
|
transition: color 0.5s;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
figcaption {
|
|
font-family: sans-serif;
|
|
font-size: 1.2rem;
|
|
}
|
|
.menu-toggle {
|
|
background-color: darkred; color: white;
|
|
}
|