Update Right Coin
This commit is contained in:
parent
113d753452
commit
9b969753a9
2 changed files with 35 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
:root {
|
||||
--code-color: #eee8d5; /* gray (base2) */
|
||||
}
|
||||
|
||||
body {
|
||||
max-width: 800px;
|
||||
font-family: sans-serif;
|
||||
|
@ -50,15 +54,29 @@ div#navigation a {
|
|||
}
|
||||
|
||||
p.date {
|
||||
background-color: #eee8d5; /* base2 */
|
||||
background-color: var(--code-color);
|
||||
padding: 10px 10px 10px 10px;
|
||||
}
|
||||
|
||||
p.repository {
|
||||
background-color: #eee8d5; /* base2 */
|
||||
background-color: var(--code-color);
|
||||
padding: 10px 10px 10px 10px;
|
||||
}
|
||||
|
||||
pre {
|
||||
background-color: var(--code-color);
|
||||
padding: 10px 10px 10px 10px;
|
||||
font-size: 11pt;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
padding: 10px 10px 10px 10px;
|
||||
}
|
||||
|
||||
code {
|
||||
background-color: var(--code-color);
|
||||
}
|
||||
|
||||
ul.projects {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue