Merge branch 'master' of github.com:JPyke3/libreddit into master

This commit is contained in:
JPyke3 2021-02-01 11:13:36 +01:00
commit 0a140a6ffc
No known key found for this signature in database
GPG key ID: C7833DB15753380A
7 changed files with 47 additions and 13 deletions

View file

@ -58,6 +58,11 @@
background: var(--accent);
}
:focus {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
html, body, div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote,
pre, form, fieldset, table, th, td, select, input {
margin: 0;
@ -93,12 +98,23 @@ nav {
}
nav * { color: var(--text); }
nav #reddit, #code { color: var(--accent); }
nav #logo { grid-area: logo; }
nav #reddit, #code > span { color: var(--accent); }
nav #code > svg { stroke: var(--accent); }
nav #logo {
grid-area: logo;
white-space: nowrap;
margin-right: 5px;
}
nav #links {
grid-area: links;
margin-left: 10px;
display: flex;
}
nav #links svg {
display: none;
}
nav #version {
@ -115,6 +131,10 @@ nav #libreddit {
opacity: 0.8;
}
#code {
margin-left: 5px;
}
main {
display: flex;
justify-content: center;
@ -1070,6 +1090,8 @@ td, th {
}
nav #links { margin-left: auto; }
nav #links span { display: none; }
nav #links svg { display: block; }
#subscriptions { position: unset; }