2022-12-17 07:16:09 +00:00
|
|
|
:root {
|
2024-02-20 00:24:38 +00:00
|
|
|
--light: #224520;
|
|
|
|
--cyan: #285125;
|
|
|
|
--light-gray: #336830;
|
|
|
|
--medium-gray: #dbd7d4;
|
|
|
|
--gray: #dbd7d4;
|
|
|
|
--dark: #f3d0aa;
|
|
|
|
--darker: #f3d0aa;
|
2022-12-17 16:03:04 +00:00
|
|
|
|
2024-02-20 00:40:51 +00:00
|
|
|
--sans-font: "Darumadrop One", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", sans-serif;
|
|
|
|
--display-font: "Darumadrop One", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", sans-serif;
|
|
|
|
--mono-font: 'Victor Mono', 'VictorMono Nerd Font', SFMono-Regular, ui-monospace, 'DejaVu Sans Mono', 'Roboto Mono', Menlo, Consolas, monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
display: flex;
|
|
|
|
gap: 2em;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
header img {
|
|
|
|
max-width: 128px;
|
|
|
|
max-height: 128px;
|
2022-12-17 07:16:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
2024-02-20 00:24:38 +00:00
|
|
|
color: var(--dark);
|
2022-12-17 07:16:09 +00:00
|
|
|
background: var(--light);
|
|
|
|
-webkit-text-size-adjust: none;
|
2022-12-17 16:03:04 +00:00
|
|
|
font-family: var(--sans-font);
|
2022-12-17 07:16:09 +00:00
|
|
|
}
|
|
|
|
|
2022-12-22 08:57:54 +00:00
|
|
|
pre {
|
|
|
|
font-family: var(--mono-font);
|
|
|
|
}
|
|
|
|
|
2022-12-17 07:16:09 +00:00
|
|
|
::selection {
|
|
|
|
background: var(--medium-gray);
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2023-11-05 08:27:04 +00:00
|
|
|
max-width: 1000px;
|
2022-12-17 07:16:09 +00:00
|
|
|
padding: 0 13px;
|
|
|
|
margin: 40px auto;
|
|
|
|
}
|
|
|
|
|
2024-02-19 22:23:39 +00:00
|
|
|
main,
|
|
|
|
footer {
|
2022-12-17 07:16:09 +00:00
|
|
|
font-size: 1rem;
|
|
|
|
padding: 0;
|
|
|
|
line-height: 160%;
|
|
|
|
}
|
|
|
|
|
2024-02-19 22:23:39 +00:00
|
|
|
main h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
strong {
|
2022-12-17 16:03:04 +00:00
|
|
|
font-family: var(--display-font);
|
2022-12-17 07:16:09 +00:00
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
main h1 {
|
|
|
|
font-size: 20px;
|
|
|
|
padding: 10px 0 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
main h2 {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
2024-02-19 22:23:39 +00:00
|
|
|
main h2,
|
|
|
|
h3 {
|
2022-12-17 07:16:09 +00:00
|
|
|
padding: 20px 0 15px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
2022-12-18 16:38:03 +00:00
|
|
|
padding: 0.4rem 0 1.5rem 0;
|
2022-12-17 07:16:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nav ul {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
list-style: none;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav ul li {
|
|
|
|
padding-right: 10px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-decoration: none;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--darker);
|
|
|
|
border-bottom: 1.5px solid var(--medium-gray);
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
border-bottom: 1.5px solid var(--gray);
|
|
|
|
}
|
|
|
|
|
2022-12-17 07:17:54 +00:00
|
|
|
.index {
|
2022-12-17 07:16:09 +00:00
|
|
|
display: grid;
|
2022-12-17 16:03:04 +00:00
|
|
|
grid-template-columns: 6em 1fr minmax(0, 7em);
|
2022-12-17 07:16:09 +00:00
|
|
|
grid-row-gap: 0.5em;
|
2022-12-17 16:03:04 +00:00
|
|
|
min-width: 0;
|
2022-12-17 07:16:09 +00:00
|
|
|
}
|
|
|
|
|
2024-02-19 22:23:39 +00:00
|
|
|
.index-category {
|
|
|
|
margin-top: 2em;
|
|
|
|
color: var(--gray);
|
|
|
|
}
|
|
|
|
|
2022-12-18 14:30:19 +00:00
|
|
|
.clone-url {
|
|
|
|
padding-top: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clone-url pre {
|
|
|
|
color: var(--dark);
|
2022-12-18 14:37:27 +00:00
|
|
|
white-space: pre-wrap;
|
2022-12-18 14:30:19 +00:00
|
|
|
}
|
|
|
|
|
2022-12-17 16:03:04 +00:00
|
|
|
.desc {
|
2022-12-24 11:20:44 +00:00
|
|
|
font-weight: normal;
|
2022-12-17 16:03:04 +00:00
|
|
|
color: var(--gray);
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tree {
|
|
|
|
display: grid;
|
2023-02-02 06:01:36 +00:00
|
|
|
grid-template-columns: 10ch auto 1fr;
|
2022-12-17 16:03:04 +00:00
|
|
|
grid-row-gap: 0.5em;
|
|
|
|
grid-column-gap: 1em;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.log {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 20rem minmax(0, 1fr);
|
|
|
|
grid-row-gap: 0.8em;
|
|
|
|
grid-column-gap: 8rem;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
padding-bottom: 1em;
|
|
|
|
border-bottom: 1.5px solid var(--medium-gray);
|
2022-12-17 07:16:09 +00:00
|
|
|
}
|
|
|
|
|
2022-12-17 16:03:04 +00:00
|
|
|
.log pre {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
|
2024-02-19 22:23:39 +00:00
|
|
|
.mode,
|
|
|
|
.size {
|
2022-12-17 16:03:04 +00:00
|
|
|
font-family: var(--mono-font);
|
|
|
|
}
|
2024-02-19 22:23:39 +00:00
|
|
|
|
2023-02-02 06:01:36 +00:00
|
|
|
.size {
|
|
|
|
text-align: right;
|
|
|
|
}
|
2022-12-17 16:03:04 +00:00
|
|
|
|
|
|
|
.readme pre {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
|
2022-12-18 14:30:19 +00:00
|
|
|
.readme {
|
2022-12-19 12:19:32 +00:00
|
|
|
background: var(--light-gray);
|
|
|
|
padding: 0.5rem;
|
2022-12-18 14:30:19 +00:00
|
|
|
}
|
|
|
|
|
2022-12-26 06:27:00 +00:00
|
|
|
.readme ul {
|
|
|
|
padding: revert;
|
|
|
|
}
|
|
|
|
|
2022-12-26 06:34:09 +00:00
|
|
|
.readme img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-12-17 17:05:48 +00:00
|
|
|
.diff {
|
2022-12-18 05:12:29 +00:00
|
|
|
margin: 1rem 0 1rem 0;
|
|
|
|
padding: 1rem 0 1rem 0;
|
|
|
|
border-bottom: 1.5px solid var(--medium-gray);
|
2022-12-17 17:05:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.diff pre {
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
.diff-stat {
|
|
|
|
padding: 1rem 0 1rem 0;
|
|
|
|
}
|
|
|
|
|
2024-02-19 22:23:39 +00:00
|
|
|
.commit-hash,
|
|
|
|
.commit-email {
|
2023-02-01 04:28:42 +00:00
|
|
|
font-family: var(--mono-font);
|
|
|
|
}
|
|
|
|
|
2022-12-18 05:12:29 +00:00
|
|
|
.commit-email:before {
|
|
|
|
content: '<';
|
|
|
|
}
|
|
|
|
|
|
|
|
.commit-email:after {
|
|
|
|
content: '>';
|
|
|
|
}
|
|
|
|
|
2022-12-18 06:48:43 +00:00
|
|
|
.commit {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
2022-12-17 17:05:48 +00:00
|
|
|
.commit pre {
|
|
|
|
padding-bottom: 1rem;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.diff-stat ul li {
|
|
|
|
list-style: none;
|
|
|
|
padding-left: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.diff-add {
|
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
|
|
|
|
.diff-del {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
.diff-noop {
|
|
|
|
color: var(--gray);
|
|
|
|
}
|
|
|
|
|
2022-12-18 05:12:29 +00:00
|
|
|
.ref {
|
|
|
|
font-family: var(--display-font);
|
|
|
|
font-size: 14px;
|
|
|
|
color: var(--gray);
|
|
|
|
display: inline-block;
|
|
|
|
padding-top: 0.7em;
|
|
|
|
}
|
|
|
|
|
2022-12-22 15:49:00 +00:00
|
|
|
.refs pre {
|
|
|
|
white-space: pre-wrap;
|
2022-12-24 09:43:40 +00:00
|
|
|
padding-bottom: 0.5rem;
|
2022-12-22 15:49:00 +00:00
|
|
|
}
|
|
|
|
|
2022-12-24 09:41:48 +00:00
|
|
|
.refs strong {
|
|
|
|
padding-right: 1em;
|
|
|
|
}
|
|
|
|
|
2022-12-18 05:12:29 +00:00
|
|
|
.line-numbers {
|
|
|
|
white-space: pre-line;
|
2022-12-18 05:34:11 +00:00
|
|
|
-moz-user-select: -moz-none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-o-user-select: none;
|
|
|
|
user-select: none;
|
2023-02-01 04:28:42 +00:00
|
|
|
display: flex;
|
|
|
|
float: left;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-right: 1ch;
|
2022-12-18 05:12:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.file-wrapper {
|
2023-02-18 08:46:43 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
grid-template-columns: 1rem minmax(0, 1fr);
|
|
|
|
gap: 1rem;
|
|
|
|
padding: 0.5rem;
|
2022-12-19 12:19:32 +00:00
|
|
|
background: var(--light-gray);
|
2023-03-19 20:46:04 +00:00
|
|
|
overflow-x: auto;
|
2022-12-18 05:12:29 +00:00
|
|
|
}
|
|
|
|
|
2022-12-19 12:22:42 +00:00
|
|
|
.file-content {
|
|
|
|
background: var(--light-gray);
|
2022-12-20 01:45:29 +00:00
|
|
|
overflow-y: hidden;
|
|
|
|
overflow-x: auto;
|
2022-12-19 12:22:42 +00:00
|
|
|
}
|
|
|
|
|
2022-12-19 12:37:13 +00:00
|
|
|
.diff-type {
|
|
|
|
color: var(--gray);
|
|
|
|
}
|
|
|
|
|
2022-12-18 06:48:43 +00:00
|
|
|
.commit-info {
|
|
|
|
color: var(--gray);
|
2022-12-18 14:30:19 +00:00
|
|
|
padding-bottom: 1.5rem;
|
2022-12-22 15:49:00 +00:00
|
|
|
font-size: 0.85rem;
|
2022-12-18 06:48:43 +00:00
|
|
|
}
|
|
|
|
|
2022-12-17 16:03:04 +00:00
|
|
|
@media (max-width: 600px) {
|
2022-12-17 07:17:54 +00:00
|
|
|
.index {
|
2022-12-17 07:16:09 +00:00
|
|
|
grid-row-gap: 0.8em;
|
|
|
|
}
|
2022-12-17 16:03:04 +00:00
|
|
|
|
|
|
|
.log {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
grid-row-gap: 0em;
|
|
|
|
}
|
|
|
|
|
2022-12-18 14:37:27 +00:00
|
|
|
.index {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
grid-row-gap: 0em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.index-name:not(:first-child) {
|
|
|
|
padding-top: 1.5rem;
|
|
|
|
}
|
|
|
|
|
2022-12-17 16:03:04 +00:00
|
|
|
.commit-info:not(:last-child) {
|
|
|
|
padding-bottom: 1.5rem;
|
|
|
|
}
|
2022-12-22 15:49:00 +00:00
|
|
|
|
|
|
|
pre {
|
|
|
|
font-size: 0.8rem;
|
|
|
|
}
|
2024-02-19 22:23:39 +00:00
|
|
|
}
|