summaryrefslogtreecommitdiffstats
path: root/content/assets/styles.css
diff options
context:
space:
mode:
Diffstat (limited to 'content/assets/styles.css')
-rw-r--r--content/assets/styles.css106
1 files changed, 106 insertions, 0 deletions
diff --git a/content/assets/styles.css b/content/assets/styles.css
new file mode 100644
index 0000000..62e5edf
--- /dev/null
+++ b/content/assets/styles.css
@@ -0,0 +1,106 @@
+@font-face {
+ font-family: Fairfax;
+ src: url('./assets/fonts/Fairfax.ttf');
+}
+
+* {
+ padding: 0;
+ margin: 0;
+}
+
+body {
+ background-color: #282828;
+ color: #ebdbb2;
+ font-family: Fairfax, monospace;
+ font-size: 12px;
+}
+
+.content {
+ background-color: #3c3836;
+ padding: 9px;
+ margin-left: auto;
+ margin-right: auto;
+ margin-top: 8px;
+ margin-bottom: 8px;
+ max-width: 480px;
+}
+
+h1, h2, h3 {
+ margin-top: 12px;
+ weight: bold;
+}
+
+h1 {
+ font-size: 24px;
+}
+h1::before {
+ content: "* ";
+}
+
+h2 {
+ font-size: 12px;
+}
+h2::before {
+ content: "** ";
+}
+
+h3 {
+ font-size: 12px;
+}
+
+h3::before {
+ content: "*** ";
+}
+
+li {
+ padding-left: 18px;
+ list-style-type: none;
+}
+
+li::before {
+ content: "• ";
+}
+
+a {
+ color: #d65d0e;
+ text-decoration: none;
+}
+
+p::before {
+ content: "¶ ";
+ font-weight: bold;
+}
+
+#thin-badges {
+ display: inline-block;
+ position: fixed;
+ left: 8px;
+ bottom: 8px;
+}
+
+#thin-badges img {
+ display: block;
+}
+
+hr {
+ border: 1px solid #ebdbb2;
+ margin-top: 2px;
+ margin-bottom: 2px;
+}
+
+.underline {
+ text-decoration: underline;
+}
+
+#avatar {
+ float: right;
+ width: 25%;
+ margin-left: 4px;
+}
+
+#ads {
+ border: none;
+ width: 722px;
+ height: 98px;
+ max-width: 100%;
+}