summaryrefslogtreecommitdiff
path: root/styles.css
diff options
context:
space:
mode:
authorBlaster4385 <blaster4385@tablaster.dev>2024-04-21 17:07:26 +0530
committerBlaster4385 <blaster4385@tablaster.dev>2024-04-22 23:13:01 +0530
commit5f37a399cfb59d5a3d794c9da8469b54e5166f59 (patch)
tree154dcad88d6f2bacd25f2a051ace44413d1f2a1b /styles.css
Initial website
Diffstat (limited to 'styles.css')
-rw-r--r--styles.css65
1 files changed, 65 insertions, 0 deletions
diff --git a/styles.css b/styles.css
new file mode 100644
index 0000000..1c410f7
--- /dev/null
+++ b/styles.css
@@ -0,0 +1,65 @@
+:root {
+ --font-family: 'JetBrains Mono', monospace;
+ --color-background: #282828;
+ --color-text: #ebdbb2;
+ --color-accent: #fabd2f;
+ --color-highlight: #b8bb26;
+}
+
+body {
+ font-family: var(--font-family);
+ background-color: var(--color-background);
+ color: var(--color-text);
+ margin: 0;
+ padding: 0;
+}
+
+.container {
+ margin: auto;
+ max-width: 1280px;
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ font-weight: bold;
+ color: var(--color-accent);
+}
+
+a {
+ color: inherit;
+ text-decoration: none;
+}
+
+#markdown {
+ margin: 20px;
+}
+
+#header {
+ text-align: center;
+ padding: 20px;
+}
+
+ul {
+ list-style-type: none;
+ padding-left: 20px;
+}
+
+li::before {
+ content: "*";
+ color: var(--color-highlight);
+ margin-right: 10px;
+}
+
+li {
+ margin-bottom: 10px;
+}
+
+p {
+ font-size: 1.5 rem;
+ line-height: 1.5;
+ text-align: justify;
+} \ No newline at end of file