commit 1859a955c758d74b7cfbaf99fcd8378371be697f
parent 9fac4a582a330b20605d2708264ca6c2ede5f8c1
Author: simplicialcomplex <simplicialcomplex@tilde.club>
Date: Tue, 21 Sep 2021 17:54:14 +0300
added style
Diffstat:
A | .gitignore | | | 73 | +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
M | index.org | | | 24 | +++++++++++++----------- |
A | style.css | | | 53 | +++++++++++++++++++++++++++++++++++++++++++++++++++++ |
3 files changed, 139 insertions(+), 11 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -0,0 +1,73 @@
+# Created by https://www.toptal.com/developers/gitignore/api/emacs,git
+# Edit at https://www.toptal.com/developers/gitignore?templates=emacs,git
+
+### Emacs ###
+# -*- mode: gitignore; -*-
+*~
+\#*\#
+/.emacs.desktop
+/.emacs.desktop.lock
+*.elc
+auto-save-list
+tramp
+.\#*
+
+# Org-mode
+.org-id-locations
+*_archive
+
+# flymake-mode
+*_flymake.*
+
+# eshell files
+/eshell/history
+/eshell/lastdir
+
+# elpa packages
+/elpa/
+
+# reftex files
+*.rel
+
+# AUCTeX auto folder
+/auto/
+
+# cask packages
+.cask/
+dist/
+
+# Flycheck
+flycheck_*.el
+
+# server auth directory
+/server/
+
+# projectiles files
+.projectile
+
+# directory configuration
+.dir-locals.el
+
+# network security
+/network-security.data
+
+
+### Git ###
+# Created by git for backups. To disable backups in Git:
+# $ git config --global mergetool.keepBackup false
+*.orig
+
+# Created by git when using merge tools for conflicts
+*.BACKUP.*
+*.BASE.*
+*.LOCAL.*
+*.REMOTE.*
+*_BACKUP_*.txt
+*_BASE_*.txt
+*_LOCAL_*.txt
+*_REMOTE_*.txt
+
+# End of https://www.toptal.com/developers/gitignore/api/emacs,git
+
+.htmlcache
+.gphcache
diff --git a/index.org b/index.org
@@ -1,14 +1,16 @@
#+title: simplicialcomplex's home page
#+author: simplicialcomplex
-#+date: 2021-08-23
+#+email: simplicialcomplex@tilde.club
+#+date: 2021-09-21
-#+OPTIONS: html-postamble:nil
-#+OPTIONS: html-preamble:nil
-#+OPTIONS: toc:nil
-#+OPTIONS: num:nil
+#+language: en
+#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="style.css"/>
+
+#+options: ':nil *:t -:t ::t <:t H:3 \n:nil ^:t
+#+options: toc:nil num:nil html-preamble:nil html-postamble:nil
#+begin_quote
-I'm not a doll. I say funny things on the internet sometimes.
+I am not a doll. I say funny things on the internet sometimes.
#+end_quote
* Welcome!
@@ -23,13 +25,13 @@ I'm not a doll. I say funny things on the internet sometimes.
Check out [[https://tilde.club/~dvosipov][my friend Denis's page]]. He's nice and a really good math
tutor.
-#+BEGIN_center
+#+begin_center
#+CAPTION: Big shrother is watching you.
-#+ATTR_HTML: :width 30% :height 30%
+#+ATTR_HTML: :width 50% :height 50%
[[file:media/wallshroom.jpg]]
-#+END_center
+#+end_center
-#+BEGIN_EXPORT html
+#+begin_export html
<!-- Begin Tilde Club Badge -->
<center>
<p><a href="http://tilde.club">
@@ -38,4 +40,4 @@ I'm not a doll. I say funny things on the internet sometimes.
</a></p>
</center>
<!-- End Tilde Club Badge -->
-#+END_EXPORT
+#+end_export
diff --git a/style.css b/style.css
@@ -0,0 +1,53 @@
+@font-face {
+ font-family: "k.iosevka";
+ font-style: normal;
+ font-weight: normal;
+ src: url(k.iosevka.woff2) format("woff2");
+ font-display: swap;
+}
+
+@font-face {
+ font-family: "k.iosevka";
+ font-style: normal;
+ font-weight: bold;
+ src: url(k.iosevka.bold.woff2) format("woff2");
+ font-display: swap;
+}
+
+@font-face {
+ font-family: "k.iosevka";
+ font-style: italic;
+ font-weight: italic;
+ src: url(k.iosevka.italic.woff2) format("woff2");
+ font-display: swap;
+}
+
+html {
+ height: 100%;
+ font-family: "k.iosevka", monospace;
+ font-size: 16px;
+}
+
+div {
+ text-align: justify;
+ max-width: 700px;
+ margin: 50px;
+ margin-right: auto;
+ margin-left: auto;
+}
+
+blockquote {
+ font-style: italic;
+ font-size: 14px;
+ display: flex;
+ justify-content: flex-end;
+ margin-right: 0;
+}
+
+/*
+ hack to disable figure numbering, as orgmode can't do this since 2015 at least
+ https://emacs.stackexchange.com/questions/17619/how-can-i-turn-off-numbering-for-figures
+*/
+span.figure-number {
+ display: none;
+}