diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2024-09-08 19:06:47 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2024-09-08 19:06:47 +0400 |
commit | f5b53a43b05e561ff22e57d2ba00dfdb1f3b617b (patch) | |
tree | 21648579e005a727e36e7b9835e244c54cde222b /style.css | |
parent | 49d25e0021e1769e42ef1e46318834200bd1c126 (diff) |
directory layout changed
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..56a3108 --- /dev/null +++ b/style.css @@ -0,0 +1,108 @@ +/* 10th June 2024, Designer: Suleyman Farajli */ + +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; + padding: 0.3em; +} + +p { + margin-right: 1em; + margin-left: 1em; +} + +small { + padding: 0.6em; +} + +a { + text-decoration: none; + color: #BB6767; /* Red */ + margin-right: 0.2em; + margin-left: 0.2em; + padding: 0.4em; +} + +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 as the same + */ + +#header-link, #header-link:hover { + font-size: 2.0em; + color: white; + font-weight: normal; +} |