21 lines
359 B
CSS
21 lines
359 B
CSS
|
/* Custom to Nataliah Journal */
|
||
|
menu {
|
||
|
background-color: darkslategrey;
|
||
|
|
||
|
a,a:visited,a:link,a:focus {
|
||
|
text-decoration: none;
|
||
|
color: grey;
|
||
|
transition: color 0.5s;
|
||
|
}
|
||
|
a:hover {
|
||
|
color: orchid;
|
||
|
transition: color 0.5s;
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|
||
|
figcaption {
|
||
|
font-family: cursive;
|
||
|
font-size: 1.5rem;
|
||
|
color: lightgrey
|
||
|
}
|