basic css
This commit is contained in:
parent
e50fe844c2
commit
d1ce5c94f9
1 changed files with 72 additions and 2 deletions
|
|
@ -1,10 +1,80 @@
|
||||||
@import url(fonts.css);
|
@import url(fonts.css);
|
||||||
|
|
||||||
html {
|
html {
|
||||||
background-color: var(--c-bg)
|
background-color: var(--c-bg);
|
||||||
|
scrollbar-color: var(--c-border) transparent
|
||||||
|
}
|
||||||
|
|
||||||
|
body > .nojs {
|
||||||
|
width: calc(100vw - 16px);
|
||||||
|
height: calc(100vh - 16px);
|
||||||
|
box-sizing: border-box;
|
||||||
|
border: 8px double var(--c-border);
|
||||||
|
overflow: hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
.title, .credit {
|
||||||
|
height: 24px;
|
||||||
|
background-color: var(--c-bg);
|
||||||
|
color: var(--c-title);
|
||||||
|
position: absolute;
|
||||||
|
padding: 0 4px;
|
||||||
|
font-family: mono;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
top: 0;
|
||||||
|
left: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.credit {
|
||||||
|
bottom: 0;
|
||||||
|
right: 64px;
|
||||||
|
color: var(--c-fg)
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
overflow: auto;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
padding-left: 16px
|
||||||
|
}
|
||||||
|
|
||||||
|
t {
|
||||||
|
font-family: "mono";
|
||||||
|
font-weight: bold;
|
||||||
|
color: var(--c-title)
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
font-family: "nya";
|
||||||
|
color: var(--c-fg);
|
||||||
|
white-space: pre
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-family: "nya";
|
font-family: "nya";
|
||||||
color: var(--c-fg)
|
color: var(--c-fg);
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
font-family: "mono";
|
||||||
|
color: var(--c-highlight);
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: var(--c-bg);
|
||||||
|
background-color: var(--c-highlight);
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
list-style: none;
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue