mirror of
https://github.com/kou029w/quot.git
synced 2025-01-31 14:28:06 +00:00
Compare commits
5 commits
3ea90fbd06
...
3cd4337c04
Author | SHA1 | Date | |
---|---|---|---|
3cd4337c04 | |||
d94e5a07e5 | |||
bd57d3564b | |||
4baea21380 | |||
f14e66d938 |
4 changed files with 34 additions and 5 deletions
|
@ -1,8 +1,15 @@
|
||||||
:root {
|
:root {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
--nc-font-sans: sans-serif;
|
||||||
|
--nc-font-mono: monospace;
|
||||||
|
--nc-lk-1: #1875d1;
|
||||||
|
--nc-lk-2: #004a9f;
|
||||||
|
--nc-ac-1: #f57f17;
|
||||||
|
--nc-ac-tx: var(--nc-tx-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
padding-inline: 1rem;
|
||||||
max-inline-size: 80rem;
|
max-inline-size: 80rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,6 +19,19 @@ header {
|
||||||
justify-content: space-evenly;
|
justify-content: space-evenly;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
header h1 {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
header h1 > a,
|
||||||
|
header h1 > a:hover {
|
||||||
|
color: var(--nc-ac-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
header nav > * {
|
||||||
|
font-size: 1.55rem;
|
||||||
|
}
|
||||||
|
|
||||||
a[href^="/"] {
|
a[href^="/"] {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,12 +35,12 @@ export default () => {
|
||||||
<h1>
|
<h1>
|
||||||
<a href="/">Quot</a>
|
<a href="/">Quot</a>
|
||||||
</h1>
|
</h1>
|
||||||
<a href="/new">📄</a>
|
<nav>
|
||||||
|
<a href="/new">📄</a>
|
||||||
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
{routes[pathname()] ?? (
|
{routes[pathname()] ?? (
|
||||||
<Page
|
<Page id={parseInt(pathname().slice(1), 16) || random()} />
|
||||||
id={parseInt(pathname().slice(1), 16) || random()}
|
|
||||||
/>
|
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|
|
@ -3,3 +3,12 @@
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.cards > a:hover::after {
|
||||||
|
content: "";
|
||||||
|
background-color: rgba(0, 0, 0, 10%);
|
||||||
|
display: block;
|
||||||
|
position: relative;
|
||||||
|
top: -100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="ja" dir="ltr">
|
<html lang="" dir="ltr">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width" />
|
<meta name="viewport" content="width=device-width" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue