aboutsummaryrefslogtreecommitdiff
path: root/src/assets/stylesheet.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets/stylesheet.css')
-rw-r--r--src/assets/stylesheet.css34
1 files changed, 31 insertions, 3 deletions
diff --git a/src/assets/stylesheet.css b/src/assets/stylesheet.css
index 4d57d75..7eed892 100644
--- a/src/assets/stylesheet.css
+++ b/src/assets/stylesheet.css
@@ -41,7 +41,7 @@
/* i don't want to display the date but it needs to exist for rss generation */
#postamble
{
- visibility: hidden;
+ display: none;
}
body
@@ -56,7 +56,7 @@ body
h1
{
- font-size: 60px;
+ font-size: 40px;
text-align: center;
font-family: ibm-xga, monospace;
}
@@ -67,6 +67,12 @@ h2
font-family: ibm-xga, monospace;
}
+/* also a h2 */
+.footnotes
+{
+ font-size: 20px;
+}
+
.logo
{
text-align: center;
@@ -78,11 +84,32 @@ h2
font-size: 20px;
}
+.big-logo
+{
+ display: none;
+}
+
+@media screen and (min-width: 850px)
+{
+ .big-logo
+ {
+ display: inherit;
+ }
+ .small-logo
+ {
+ display: none;
+ }
+}
+
.buttons
{
display: grid;
place-items: center;
}
+.buttons > p
+{
+ margin: 0;
+}
.logo:hover
{
@@ -118,7 +145,8 @@ ul
ul li::before
{
- content: "\00a7 ";
+ font-family: ibm-xga, monospace;
+ content: "* ";
}
hr