diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-06-24 18:37:57 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-06-24 18:37:57 +0400 |
commit | dd71f019de0314f7b3f2ae1e0aa920e49e9f2759 (patch) | |
tree | 5b8513c4f2e7959eb45de75d93f331506b1cbd43 /static/style.css | |
parent | 014901951cc44a70ff3d4aaa4246592b08699d69 (diff) |
refactor: everything chageddev
Diffstat (limited to 'static/style.css')
-rw-r--r-- | static/style.css | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..e23d743 --- /dev/null +++ b/static/style.css @@ -0,0 +1,88 @@ +/* +* Stylesheet of farajli.net +*/ + +/* FIXME: Don't use google fonts */ +@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@370&display=swap'); + +.jetbrains-mono { + font-family: "JetBrains Mono", serif; + font-optical-sizing: auto; + font-weight: 370; + font-style: normal; +} + +body { + font-family: "JetBrains Mono"; + font-size: 18px; + width: 60em; + display: block; + background-color: #1c1c1c; /* Almost Black */ + color: #ffffff; /* White */ + padding-left: 1em; + margin: auto; +} + +a { + text-decoration: none; + color: #5E81AC; /* Blue */ +} + +a:hover { + color: #B48EAD; /* Purple */ +} + +ul, ol { + margin: 0; + padding: 0; + list-style-position: inside; /* optional: keeps bullets/numbers inside */ +} + +li > ul, +li > ol { + margin-left: 1.2em; /* or adjust as needed */ + padding-left: 1em; +} + +.menu_item { + color: #BB6767; /* Red */ + /* font-weight: bold; */ + padding: 0.4em; + padding-right: 3em; + font-size: 20px; + margin-right: 0.2em; + margin-left: 0.2em; +} + +.right_menu_item { + float: right; + padding-right: 1em; +} + +#header-name { + text-align: left; + font-size: 25px; + padding-top: 20px; + color: #FFFFFF; /* White */ + font-weight: normal; +} + +#quote { + font-size: 20px; + text-align: right; + color: #C0C0C0; /* Darkish gray */ + padding-top: 20px; + font-weight: 430; +} + +#bar{ + width: 100%; + line-height: 35px; +} + +#copyleft { + color: #696969; /* Dark Gray */ + /* display: block; */ + margin-top: 2em; + margin-bottom: 1em; +} |