35 lines
490 B
CSS
35 lines
490 B
CSS
@import 'base.css';
|
|
|
|
a.router-link-active {
|
|
color: var(--vt-c-munsell) !important;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: var(--vt-c-silver);
|
|
transition: 0.4s;
|
|
}
|
|
|
|
@media (hover: hover) {
|
|
/*a:hover,*/
|
|
/*button:hover {*/
|
|
/* background-color: var(--vt-c-payne);*/
|
|
/*}*/
|
|
}
|
|
|
|
/* Example CSS for headings with additional styles */
|
|
h1 {
|
|
font-size: 2rem;
|
|
line-height: 4rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.5rem;
|
|
line-height: 3rem;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.2rem;
|
|
line-height: 2.4rem;
|
|
}
|