blob: 4944ff7b2d685b2797eb5dd6791c9b469a31e14b (
plain) (
tree)
|
|
div.navbar {
background-color:var(--foregroundColour);
box-sizing: border-box;
font-family: "Helvetica","sans-serif";
height: auto;
margin: auto;
max-width: var(--maximumPageWidth);
min-width: var(--minimumPageWidth);
padding: 1rem 2rem;
text-align: center;
width: 100%;
}
div.navbar p span.section + span.section::before {
content:"\0020\2014\0020"
}
div.navbar p,div.navbar p span.section a,div.navbar p span.section a:visited {
color: var(--backgroundColour);
text-decoration:none;
}
div.navbar p span.section a:hover {
color:var(--colour);
}
div.navbar p span.section a + a::before {
content:"\0020\00B7\0020"
}
div.navbar p span.section a.mandelbrot-link:hover {
color:var(--green);
}
div.navbar img.themeToggler {
background-color:var(--backgroundColour);
border-color: var(--backgroundColour);
border-radius: calc(1rem / 3 * 2);
border-width: calc(1rem / 3);
border-style: solid;
color: var(--backgroundColour);
cursor: pointer;
display: block;
margin: 0 auto;
margin-top: 1rem;
user-select: none;
width: calc(3rem - 1rem / 2 * 2);
}
div.banner {
background-color:var(--colour);
display: flex;
height: 12rem;
width: 100%;
}
div.banner img {
background-color:inherit;
border-radius: 0;
border-style: none;
height: 8rem;
margin: auto;
width: 10rem;
}
|