Merge branch 'master' into header-link

This commit is contained in:
Luke Smith
2021-03-23 17:54:02 -04:00
committed by GitHub
223 changed files with 4374 additions and 260 deletions

View File

@@ -1,14 +1,29 @@
body {
background: #151515 ;
color: white ;
max-width: 800px ;
margin: auto ;
padding: 0 16px ;
margin-bottom: 500px ;
font-family: sans-serif ;
}
a {
color: lightblue ;
}
a:visited {
color: gray ;
}
h1 {
text-align: center ;
}
h2 {
color: tomato ;
}
footer {
text-align: center ;
}
@@ -25,7 +40,8 @@ code {
color: lime ;
}
li img {
img[alt="BTC logo"],
img[alt="XMR Logo"] {
max-width: 1em ;
max-height: 1em ;
display: inline ;
@@ -36,19 +52,22 @@ li img {
text-decoration: none;
}
@media (prefers-color-scheme: dark) {
@media (prefers-color-scheme: light) {
body {
background: #151515 ;
color: white ;
background: white ;
color: black ;
}
a {
color: lightblue ;
color: blue ;
}
a:visited {
color: gray ;
color: purple ;
}
h2 {
color: tomato ;
color: inherit ;
}
code {
color: forestgreen ;
}
}