25 lines
352 B
CSS
25 lines
352 B
CSS
.title {
|
|
font-size: 1em;
|
|
}
|
|
|
|
.title h1 {
|
|
padding-bottom: 0;
|
|
margin-bottom:0;
|
|
margin-top:0;
|
|
}
|
|
|
|
.title a {
|
|
transition: all 0.1s ease-in;
|
|
color: var(--foreground-active);
|
|
}
|
|
|
|
.title a:hover {
|
|
color: var(--accent);
|
|
transform: translateY(50%);
|
|
}
|
|
|
|
.pageTitle {
|
|
margin-left: -0.15em;
|
|
color: var(--foreground-inactive);
|
|
}
|