summaryrefslogtreecommitdiff
path: root/site/assets/css/css.css
diff options
context:
space:
mode:
Diffstat (limited to 'site/assets/css/css.css')
-rw-r--r--site/assets/css/css.css55
1 files changed, 41 insertions, 14 deletions
diff --git a/site/assets/css/css.css b/site/assets/css/css.css
index d7db0e1f..c9d9b029 100644
--- a/site/assets/css/css.css
+++ b/site/assets/css/css.css
@@ -45,11 +45,13 @@ header .site_name {
color: #fff;
}
header .sub {
- color: #666;
- font-size: 10pt;
margin-left: 4px;
margin-top: 2px;
- transition: color 0.1s cubic-bezier(0,1,1,1);
+ transition: color 0.1s cubic-bezier(0,0,1,1);
+}
+.sub {
+ color: #666;
+ font-size: 10pt;
}
.desktop header .slogan:hover .site_name {
color: #fff;
@@ -68,7 +70,7 @@ header .links a {
text-decoration: none;
text-transform: uppercase;
margin-right: 32px;
- transition: color 0.1s cubic-bezier(0,1,1,1), border-color 0.1s cubic-bezier(0,1,1,1);
+ transition: color 0.1s cubic-bezier(0,0,1,1), border-color 0.1s cubic-bezier(0,0,1,1);
border-bottom: 1px solid rgba(255,255,255,0);
}
header .links a.active {
@@ -102,7 +104,7 @@ footer > div {
footer a {
display: inline-block;
color: #888;
- transition: color 0.2s cubic-bezier(0,1,1,1);
+ transition: color 0.2s cubic-bezier(0,0,1,1);
margin-right: 5px;
}
footer a:hover {
@@ -119,13 +121,20 @@ h1 {
padding: 0;
}
h3 {
+ margin: 0 0 10px 0;
+ padding: 0;
+ font-size: 11pt;
+ font-weight: 500;
+}
+
+th, .gray, h3 {
font-family: 'Roboto Mono', monospace;
font-weight: 400;
- font-size: 10pt;
text-transform: uppercase;
color: #666;
- margin: 0 0 10px 0;
- padding: 0;
+}
+th, .gray {
+ font-size: 9pt;
}
/* content */
@@ -148,6 +157,24 @@ section {
p {
margin: 0 0 20px 0;
}
+.content a {
+ color: #ddd;
+ transition: color 0.2s cubic-bezier(0,0,1,1);
+}
+.content a:hover {
+ color: #fff;
+}
+code {
+ display: block;
+ font-family: 'Roboto Mono', monospace;
+ font-size: 9pt;
+ max-height: 400px;
+ max-width: 640px;
+ padding: 2px 5px;
+ background: rgba(255,255,255,0.1);
+}
+
+/* top of post metadata */
.meta {
display: flex;
@@ -164,9 +191,9 @@ p {
font-size: 9pt;
padding-bottom: 4px;
}
-.gray {
- font-family: 'Roboto Mono', monospace;
- font-weight: 400;
- text-transform: uppercase;
- color: #666;
-}
+
+/* blogpost index */
+
+.blogposts div {
+ margin-bottom: 5px;
+} \ No newline at end of file