mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
540 lines
8.1 KiB
CSS
540 lines
8.1 KiB
CSS
/**
|
|
* Basic responsive layout from http://www.adamkaplan.me/grid/
|
|
*
|
|
* The rem to px conversions don't seem to hold on my Dell 2408 display,
|
|
* but do seem correct on iOS. Need to look into this.
|
|
*/
|
|
|
|
/* Small screen is the default set of styles */
|
|
/* 35.5 rem ~ 568px */
|
|
/* 40 rem ~ 640px */
|
|
/* 64 rem ~ 1024px */
|
|
|
|
@supports (font: -apple-system-body) and (-webkit-touch-callout: none) {
|
|
html {
|
|
/* Enable iOS/iPadOS Dynamic Type in Safari and web views. */
|
|
font: -apple-system-body;
|
|
}
|
|
}
|
|
|
|
body {
|
|
font-size: 100%;
|
|
}
|
|
|
|
@media (min-width: 40rem) {
|
|
body {
|
|
font-size: 112%;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 64rem) {
|
|
body {
|
|
font-size: 120%;
|
|
}
|
|
}
|
|
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
-moz-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.container {
|
|
margin: 0 auto;
|
|
max-width: 72rem;
|
|
width: 90%;
|
|
padding: 0 env(safe-area-inset-right) 0 env(safe-area-inset-left);
|
|
}
|
|
|
|
@media (min-width: 40rem) {
|
|
.column {
|
|
float: left;
|
|
padding-left: 1rem;
|
|
padding-right: 1rem;
|
|
}
|
|
|
|
.column.full {
|
|
width: 100%;
|
|
}
|
|
|
|
.column.two-thirds {
|
|
width: 66.7%;
|
|
}
|
|
|
|
.column.half {
|
|
width: 50%;
|
|
}
|
|
|
|
.column.third {
|
|
width: 33.3%;
|
|
}
|
|
|
|
.column.fourth {
|
|
width: 24.95%;
|
|
}
|
|
|
|
.column.flow-opposite {
|
|
float: right;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Modern clearfix hack
|
|
* http://nicolasgallagher.com/micro-clearfix-hack/
|
|
*/
|
|
|
|
.clearfix:before,
|
|
.clearfix:after {
|
|
content: " ";
|
|
display: table;
|
|
}
|
|
|
|
.clearfix:after {
|
|
clear: both;
|
|
}
|
|
|
|
/**
|
|
* Super barebones responsive images
|
|
*/
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
/**
|
|
* Site styles
|
|
* Light mode is the default
|
|
*/
|
|
|
|
body {
|
|
background-color: #f7f7f7;
|
|
color: #222;
|
|
font-family:
|
|
-apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial,
|
|
sans-serif;
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-family: "Helvetica Neue", "Verdana", sans-serif;
|
|
}
|
|
|
|
nav {
|
|
font-family: "Helvetica Neue", "Roboto", "Arial", sans-serif;
|
|
}
|
|
|
|
a {
|
|
color: #c30000;
|
|
}
|
|
|
|
a:visited {
|
|
color: #a00;
|
|
}
|
|
|
|
hr {
|
|
width: 55%;
|
|
height: 0;
|
|
margin: 0 auto;
|
|
border: 0;
|
|
border-top: 1px solid #ddd;
|
|
}
|
|
|
|
header.primary {
|
|
background-color: #151515;
|
|
color: #f7f7f7;
|
|
padding: 0.8rem max(1.2rem, env(safe-area-inset-right)) 0.8rem
|
|
max(1.2rem, env(safe-area-inset-left));
|
|
border-bottom: solid 1px #888888;
|
|
box-shadow: 0 0 12px 2px #222;
|
|
}
|
|
|
|
header.primary .title {
|
|
float: left;
|
|
}
|
|
|
|
header.primary h1,
|
|
header.primary h4 {
|
|
display: inline-block;
|
|
margin: 0;
|
|
padding: 0;
|
|
word-wrap: break-word;
|
|
font-family:
|
|
-apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial,
|
|
sans-serif;
|
|
font-weight: normal;
|
|
}
|
|
|
|
header.primary h1 {
|
|
font-size: 1.3rem;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
header.primary h1 a,
|
|
header.primary h1 a:visited {
|
|
color: #f7f7f7;
|
|
}
|
|
|
|
header.primary h4 {
|
|
font-size: 0.8rem;
|
|
line-height: 1.2;
|
|
color: #dedede;
|
|
}
|
|
|
|
header.primary h4 a {
|
|
color: #dedede;
|
|
text-decoration: none;
|
|
}
|
|
|
|
header.primary h4 a:hover {
|
|
color: #f7f7f7;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
header.primary nav.local {
|
|
float: left;
|
|
clear: left;
|
|
}
|
|
|
|
header.primary nav.remote {
|
|
float: right;
|
|
margin-left: 1.4rem;
|
|
}
|
|
|
|
@media (min-width: 35.5rem) {
|
|
header.primary nav.local {
|
|
float: right;
|
|
clear: none;
|
|
}
|
|
}
|
|
|
|
header.primary nav a,
|
|
header.primary nav a:visited {
|
|
color: #ee0000;
|
|
}
|
|
|
|
header.primary nav ul {
|
|
margin: 0;
|
|
padding: 0.5rem 0;
|
|
}
|
|
|
|
header.primary nav ul li {
|
|
display: inline-block;
|
|
list-style-type: none;
|
|
padding: 0.2rem 0.4rem;
|
|
font-size: 1.3rem;
|
|
}
|
|
|
|
header.primary nav ul li:first-child {
|
|
padding-left: 0;
|
|
}
|
|
|
|
header.primary nav ul li:last-child {
|
|
padding-right: 0;
|
|
}
|
|
|
|
.icon {
|
|
display: inline-block;
|
|
width: 1em;
|
|
height: 1em;
|
|
fill: currentColor;
|
|
vertical-align: -0.125em;
|
|
}
|
|
|
|
header.primary nav ul li .icon {
|
|
width: 1.6rem;
|
|
height: 1.6rem;
|
|
padding: 0.15rem;
|
|
}
|
|
|
|
header.primary nav ul li.rss .icon {
|
|
color: #e66b19;
|
|
}
|
|
|
|
header.primary nav ul li.mastodon .icon {
|
|
color: #5e4fe5;
|
|
}
|
|
|
|
header.primary nav ul li.github .icon {
|
|
color: #4183c4;
|
|
}
|
|
|
|
footer {
|
|
padding: 0 env(safe-area-inset-right) 2rem env(safe-area-inset-left);
|
|
text-align: center;
|
|
color: #6f6f6f;
|
|
font-family: "Helvetica Neue", "Verdana", "Roboto", sans-serif;
|
|
}
|
|
|
|
footer a,
|
|
footer a:visited {
|
|
color: #6f6f6f;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: #000;
|
|
color: #ddd;
|
|
}
|
|
|
|
a {
|
|
color: #e30000;
|
|
}
|
|
|
|
a:visited {
|
|
color: #d00;
|
|
}
|
|
|
|
hr {
|
|
border-top-color: #ddd;
|
|
}
|
|
|
|
header.primary {
|
|
background-color: #121212;
|
|
color: #ddd;
|
|
border-bottom: solid 1px #4d4d4d;
|
|
box-shadow: 0 0 8px 2px #333;
|
|
}
|
|
|
|
header.primary h1 a,
|
|
header.primary h1 a:visited {
|
|
color: #ddd;
|
|
}
|
|
|
|
header.primary h4 {
|
|
color: #c4c4c4;
|
|
}
|
|
|
|
header.primary h4 a {
|
|
color: #c4c4c4;
|
|
}
|
|
|
|
header.primary h4 a:hover {
|
|
color: #ddd;
|
|
}
|
|
|
|
header.primary nav a,
|
|
header.primary nav a:visited {
|
|
color: #e30000;
|
|
}
|
|
|
|
footer {
|
|
color: #919191;
|
|
}
|
|
|
|
footer a,
|
|
footer a:visited {
|
|
color: #919191;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Archive
|
|
*/
|
|
|
|
h2.year a,
|
|
h2.year a:visited,
|
|
h2.month a,
|
|
h2.month a:visited {
|
|
color: #000;
|
|
}
|
|
|
|
ul.archive {
|
|
padding-left: 0;
|
|
margin-left: 5%;
|
|
margin-bottom: 2rem;
|
|
list-style-type: none;
|
|
}
|
|
|
|
@media (min-width: 40rem) {
|
|
ul.archive {
|
|
margin-right: 5%;
|
|
}
|
|
}
|
|
|
|
ul.archive li {
|
|
margin: 0.8rem 0;
|
|
}
|
|
|
|
ul.archive li a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
ul.archive li time {
|
|
font-size: 80%;
|
|
padding-left: 0.5rem;
|
|
color: #6f6f6f;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
h2.year a,
|
|
h2.year a:visited,
|
|
h2.month a,
|
|
h2.month a:visited {
|
|
color: #ddd;
|
|
}
|
|
|
|
ul.archive li time {
|
|
color: #919191;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Projects
|
|
*/
|
|
|
|
.project-listing {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.project-listing h4 {
|
|
margin: 0.5rem 0 1rem;
|
|
}
|
|
|
|
.project-listing p {
|
|
margin: 0.5rem 0 2rem;
|
|
}
|
|
|
|
.project-stats {
|
|
text-align: center;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.project-stats a {
|
|
padding: 0 0.3rem;
|
|
}
|
|
|
|
article.project h1,
|
|
article.project h4 {
|
|
text-align: center;
|
|
}
|
|
|
|
.project-info h3 {
|
|
text-align: center;
|
|
margin-bottom: 0.2rem;
|
|
}
|
|
|
|
.project-info .column {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.project-info ul {
|
|
padding-left: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.project-info ul li {
|
|
list-style-type: none;
|
|
}
|
|
|
|
/**
|
|
* Posts
|
|
*/
|
|
|
|
article {
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
article header h1,
|
|
article header h2 {
|
|
word-wrap: break-word;
|
|
margin-bottom: 0.3rem;
|
|
}
|
|
|
|
article header time {
|
|
margin-top: 0.3rem;
|
|
color: #7b7b7b;
|
|
font-family: "Helvetica Neue", "Verdana", sans-serif;
|
|
}
|
|
|
|
.permalink {
|
|
padding-left: 8px;
|
|
}
|
|
|
|
p.fin {
|
|
text-align: center;
|
|
color: #c4c4c4;
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
p.fin .icon {
|
|
width: 1.4rem;
|
|
height: 1.4rem;
|
|
}
|
|
|
|
blockquote {
|
|
margin-left: 6%;
|
|
font-family: "Helvetica Neue", "Verdana", "Roboto", sans-serif;
|
|
font-style: italic;
|
|
color: #484848;
|
|
}
|
|
|
|
blockquote:before {
|
|
content: "\201F";
|
|
float: left;
|
|
margin-top: -0.35rem;
|
|
margin-left: -1rem;
|
|
font-size: 150%;
|
|
}
|
|
|
|
ul.audio li {
|
|
min-height: 2rem;
|
|
margin: 0.5rem 0;
|
|
}
|
|
|
|
ul.audio audio {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
pre {
|
|
background-color: #eaeaea;
|
|
padding: 0.5rem 1rem;
|
|
}
|
|
|
|
code,
|
|
pre {
|
|
font-family:
|
|
"Fira Code", "JetBrains Mono", "Meslo LG M", "Inconsolata", "Menlo", "Courier New",
|
|
monospace;
|
|
}
|
|
|
|
pre.line-numbers {
|
|
float: left;
|
|
margin-top: 0;
|
|
color: #888;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
article header time {
|
|
color: #aaaaaa;
|
|
}
|
|
|
|
p.fin {
|
|
color: #4d4d4d;
|
|
}
|
|
|
|
blockquote {
|
|
color: #b7b7b7;
|
|
}
|
|
|
|
pre {
|
|
background-color: #141414;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Improve embedded Gist styles
|
|
*/
|
|
|
|
.gist {
|
|
font-size: 0.8rem;
|
|
line-height: 1.2rem;
|
|
font-family:
|
|
"Fira Code", "JetBrains Mono", "Meslo LG M", "Inconsolata", "Menlo", "Courier New",
|
|
monospace;
|
|
}
|