477d6727f4
Activated the full text search on the index pages as well as plugging in a tempalte to show location information. Still needs to be styled but it's all wired up. Also cleaned some typos in the About description. One day I'll be able to spell. One day.
79 lines
1.1 KiB
CSS
79 lines
1.1 KiB
CSS
html {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
font: 400 1.2em/1.4em var(--base-type);
|
|
}
|
|
|
|
html body {
|
|
background: var(--primary);
|
|
color: var(--secondary);
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
header {
|
|
width: 100%;
|
|
color: var(--primary);
|
|
background: var(--secondary);
|
|
}
|
|
|
|
header > nav {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
padding: 10px;
|
|
}
|
|
|
|
header > nav a {
|
|
color: var(--primary);
|
|
}
|
|
|
|
header > nav i {
|
|
font-size: 1.3em;
|
|
}
|
|
|
|
header > nav > div[role="nav-right"] {
|
|
text-align: right;
|
|
}
|
|
|
|
div[role="system-notice"] {
|
|
background: var(--highlight);
|
|
color: var(--primary);
|
|
padding: 10px;
|
|
}
|
|
|
|
main {
|
|
height: 100%;
|
|
}
|
|
|
|
/* GLOBALS */
|
|
|
|
a {
|
|
color: var(--highlight);
|
|
text-decoration: none;
|
|
border-bottom: 1px solid var(--white);
|
|
transition: all 0.2s linear;
|
|
}
|
|
|
|
a[role="nav-links"] {
|
|
padding: 7px;
|
|
border-bottom: none;
|
|
}
|
|
|
|
a:hover {
|
|
border-bottom: 1px solid var(--secondary);
|
|
}
|
|
|
|
sup {
|
|
background: var(--black);
|
|
color: var(--white);
|
|
padding: 2px;
|
|
border-radius: 3px;
|
|
vertical-align: baseline;
|
|
font-family: var(--mono-type);
|
|
}
|