You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TheBadSpace/public/assets/css/front/frame.css

56 lines
870 B
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: 200px 1fr;
padding: 10px;
}
header > nav > div[role="nav-right"] {
text-align: right;
}
/* GLOBALS */
a {
color: var(--primary);
text-decoration: none;
border-bottom: 1px solid var(--white);
transition: all 0.2s linear;
}
a:hover {
border-bottom: 1px solid var(--primary);
}
sup {
background: var(--black);
color: var(--white);
padding: 2px;
border-radius: 3px;
vertical-align: baseline;
font-family: var(--mono-type);
}