From 3d130506f6030ec1e3b31bd8b1ae2ed251c1fb9c Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Tue, 11 Jun 2024 00:40:58 +0400 Subject: improvement on css and organization on both css and homepage --- src/home/index.html | 55 ++++++++++++++++++++++++++++ src/index.html | 54 --------------------------- src/style.css | 103 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 158 insertions(+), 54 deletions(-) create mode 100644 src/home/index.html delete mode 100644 src/index.html create mode 100644 src/style.css (limited to 'src') diff --git a/src/home/index.html b/src/home/index.html new file mode 100644 index 0000000..6e49bea --- /dev/null +++ b/src/home/index.html @@ -0,0 +1,55 @@ + + + + + + + Suleyman Farajli's website + + + + Suleyman Farajli + +
+ + + + +

+ My real name is Suleyman Farajli but I occasionally use shorter nicknames as + theion and thei0n and they are not the same as + "the ion"! + in fact, they don't even mean anything in other languages either. + I am a system administrator, who is currently studying at university. Recently, + I have been interested in Unix programming and Computer + Networking. +

+ +

posts

+ + + +
Website Created!
+ + +

links and contact info

+ + + + + + +
emailsuleyman@farajli.xyz
xmpp suleyman@farajli.xyz
ssh Public key
githubthei0n
+ + + * and it is worth mentioning that I don't have a LinkedIn (or any social media) account. + +


copyleft (c) 2024 theion

+ + + diff --git a/src/index.html b/src/index.html deleted file mode 100644 index 4f5123a..0000000 --- a/src/index.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - Suleyman Farajli - - - - - - RSS - Donate(Monero) - -
- - - -

-My real name is Suleyman Farajli but occasionally I use the nicknames theion and thei0n -which do not have special meaning or anything. -I am A system administrator, who is currently studying at a university. Recently, -I have been interested in Unix programming and Computer Networking. -

- -

posts

- - - -
Created Website!
- - -

contact

- - - - - -
emailsuleyman@farajli.xyz
xmpp suleyman@farajli.xyz
ssh Public key
- -* and it is worth mentioning that I don't have a LinkedIn (or any social media ) account. - - -


copyleft (c) 2024 theion

- - - diff --git a/src/style.css b/src/style.css new file mode 100644 index 0000000..71c93d8 --- /dev/null +++ b/src/style.css @@ -0,0 +1,103 @@ +/* CSS for Suleyman Farajli's Website */ +/* 10th June 2024, Thei0n */ + +body { + font: 15px monospace; + max-width: 60em; + display:block; + padding-top: 4em; + margin: auto; + background-color: #1c1c1c; /* Almost Black */ + color: #ffffff; /* White */ +} + +p, a { + font-size: 1.3em; +} + +h1, h2, h3 { + margin-right: 0.2em; + margin-left: 0.2em; +} + +p { + margin-right: 1em; + margin-left: 1em; +} + +a { + text-decoration: none; + color: #BB6767; /* Red */ + margin-right: 0.2em; + margin-left: 0.2em; +} + +a:hover { + color: #B48EAD; /* Purple */ + font-weight: bold; + +} + +table { + padding-left: 1em; +} + +.menu_item { + font-weight: bold; + padding-right: 3em; + font-size: 1.3em; +} + +.right { + float: right; + padding-right: 1em; +} + +.menu { + /*Left blank intentionally*/ +} + +.value { + color: #5E81AC; /* Blue */ + padding-left:3em; +} + +.post{ + padding-left:1em; +} + +.key { + color : #bbbbbb; /* Light Gray */ +} + +.color1 { + color: #EBCB8B; /* Orange */ +} +.color2 { + color: #A3BE8C; /* Green */ +} +.color3 { + color: #B48EAD; /* Purple */ +} +.color4 { + color: #BB6767; /* Red */ +} +.color0 { + color: #FFFFFF; /* White */ +} + +#copyleft { + color: #696969 /* Dark Gray */ +} + +/* + * "pointer-events: none" doesn't work on some browsers, + * to deactivate hover effect on this tag, + * hover and regular styles are defined + */ + +#header-link, #header-link:hover { + font-size: 2.0em; + color: white; + font-weight: normal; +} -- cgit v1.2.3