Miscellaneous fixes
This commit is contained in:
parent
4e38b147dc
commit
0bd378c874
4 changed files with 24 additions and 3 deletions
|
@ -48,6 +48,7 @@ not a force of oppression, but a call to examine your perceptions.
|
||||||
|
|
||||||
[Find your
|
[Find your
|
||||||
Representative](https://www.house.gov/representatives/find-your-representative)
|
Representative](https://www.house.gov/representatives/find-your-representative)
|
||||||
|
|
||||||
[Find your Senators](https://www.senate.gov/senators/contact)
|
[Find your Senators](https://www.senate.gov/senators/contact)
|
||||||
|
|
||||||
# And now for something completely different...
|
# And now for something completely different...
|
||||||
|
|
|
@ -222,7 +222,7 @@ Syncthing, which will be an upcoming topic of discussion. Some next steps:
|
||||||
leveraging wake-on-lan, to allow for streaming media remotely whenever,
|
leveraging wake-on-lan, to allow for streaming media remotely whenever,
|
||||||
without having to leave my desktop on
|
without having to leave my desktop on
|
||||||
|
|
||||||
#### Sources
|
### Sources
|
||||||
|
|
||||||
- [btrfs on the Arch Wiki](https://wiki.archlinux.org/index.php/Btrfs)
|
- [btrfs on the Arch Wiki](https://wiki.archlinux.org/index.php/Btrfs)
|
||||||
- [Snapper on the Arch Wiki](https://wiki.archlinux.org/index.php/Snapper)
|
- [Snapper on the Arch Wiki](https://wiki.archlinux.org/index.php/Snapper)
|
||||||
|
|
|
@ -8,7 +8,6 @@ body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
header {
|
header {
|
||||||
background-color: #202020;
|
background-color: #202020;
|
||||||
border-bottom: 1px solid var(--hilite);
|
border-bottom: 1px solid var(--hilite);
|
||||||
|
@ -43,6 +42,7 @@ footer #social {
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
main #details {
|
main #details {
|
||||||
|
@ -71,6 +71,22 @@ main #desc {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
main pre.highlight {
|
||||||
|
overflow-x: auto;
|
||||||
|
color: white;
|
||||||
|
background-color: #2B2B2B;
|
||||||
|
margin: 0em 4em;
|
||||||
|
padding: 1em;
|
||||||
|
border-top: 2px solid black;
|
||||||
|
border-left: 2px solid black;
|
||||||
|
border-bottom: 2px solid var(--hilite);
|
||||||
|
border-right: 2px solid var(--hilite);
|
||||||
|
}
|
||||||
|
|
||||||
|
main ul {
|
||||||
|
padding: 0em 4em;
|
||||||
|
}
|
||||||
|
|
||||||
@supports (display: grid) {
|
@supports (display: grid) {
|
||||||
|
|
||||||
.cor_page {
|
.cor_page {
|
||||||
|
@ -98,7 +114,7 @@ main #desc {
|
||||||
@media only screen and (min-width: 1250px) and (min-height: 750px) {
|
@media only screen and (min-width: 1250px) and (min-height: 750px) {
|
||||||
.cor_page {
|
.cor_page {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(9, 1fr);
|
grid-template-columns: repeat(9, minmax(0,1fr));
|
||||||
grid-template-rows: 50px max-content;
|
grid-template-rows: 50px max-content;
|
||||||
grid-template-areas:
|
grid-template-areas:
|
||||||
"head head head head head head head foot foot"
|
"head head head head head head head foot foot"
|
||||||
|
|
|
@ -97,3 +97,7 @@ h6 {
|
||||||
article p {
|
article p {
|
||||||
padding: 0em 2em;
|
padding: 0em 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
article p code {
|
||||||
|
font: 1.0em monospace;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue