From 95d271cb7c4cdc6abd5ebcbd4f89e360edb5a534 Mon Sep 17 00:00:00 2001 From: ALittlePatate Date: Mon, 22 Apr 2024 16:35:10 +0200 Subject: [PATCH] fix: NetScape/IE compatibility, cleaned code --- css/styles.css | 11 +++++++---- index.html | 1 - pages/blog.html | 1 - pages/footer.html | 2 -- pages/header.html | 5 +---- pages/insecure_mode_bypass.html | 5 +++-- pages/reversing_vac_winapi_hooks.html | 5 +++-- python_script/generate_article.py | 4 +--- 8 files changed, 15 insertions(+), 19 deletions(-) diff --git a/css/styles.css b/css/styles.css index ff04f85..b0c965a 100644 --- a/css/styles.css +++ b/css/styles.css @@ -10,8 +10,11 @@ /* centers the website */ html { - max-width: 1200px; - margin: auto; + background: rgb(18,24,217); + background-color: rgba(18,24,217); + background: url(../images/bg.gif) repeat 0 0; + max-width: 1200px; + margin: auto; } /* unvisited link */ @@ -37,7 +40,8 @@ a:active { .header { width: auto; height: auto; - overflow:auto; + overflow: hidden; + background: rgb(18,24,217); background-color: rgba(18,24,217,0.6); top: 0; left:0px; @@ -62,7 +66,6 @@ a:active { } body { - background: url(../images/bg.gif) repeat 0 0; color: white; } diff --git a/index.html b/index.html index 23ac290..3539702 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,4 @@ -

Hey you, thanks for passing by, let me introduce myself. I'm a French C/C++/Python/ASM coder who is interested in reverse engineering, Eurobeat music and 90's looking websites.

I don't know how you found this website but be free to check my blog where i post random stuff.

diff --git a/pages/blog.html b/pages/blog.html index e82f25c..8200fc0 100644 --- a/pages/blog.html +++ b/pages/blog.html @@ -1,5 +1,4 @@ -

In this section of the website you can read the random stuff i post from time to time.

The articles

diff --git a/pages/footer.html b/pages/footer.html index a99b183..4f052bf 100644 --- a/pages/footer.html +++ b/pages/footer.html @@ -1,8 +1,6 @@ - - diff --git a/pages/header.html b/pages/header.html index caacca4..b2d26cf 100644 --- a/pages/header.html +++ b/pages/header.html @@ -9,9 +9,7 @@
- - Spike - + Spike
- diff --git a/pages/insecure_mode_bypass.html b/pages/insecure_mode_bypass.html index 71ff844..e2d4917 100644 --- a/pages/insecure_mode_bypass.html +++ b/pages/insecure_mode_bypass.html @@ -1,6 +1,4 @@ - -

-insecure mode bypass in CS:GO

@@ -47,3 +45,6 @@ + + + diff --git a/pages/reversing_vac_winapi_hooks.html b/pages/reversing_vac_winapi_hooks.html index 15753cd..df31d15 100644 --- a/pages/reversing_vac_winapi_hooks.html +++ b/pages/reversing_vac_winapi_hooks.html @@ -1,6 +1,4 @@ - -

Reversing VAC winapi hooks

@@ -44,3 +42,6 @@ To conclude, reversing VAC is a great way of learning as it's not obfuscated/pac + + + diff --git a/python_script/generate_article.py b/python_script/generate_article.py index 994917e..239bb69 100644 --- a/python_script/generate_article.py +++ b/python_script/generate_article.py @@ -26,10 +26,7 @@ def write_file(text) : def generate_base(title) : base = """ - - -

"""+title+"""

""" @@ -61,6 +58,7 @@ def generate_end_file() : base = '''

+ ''' write_file(base)