Skip to content

Commit 55599c3

Browse files
committed
Website overhaul
1 parent 36cd7ce commit 55599c3

11 files changed

+38
-6
lines changed

favicon.ico

16.6 KB
Binary file not shown.

images/libdebug_logo_horiz.jpg

422 KB
Loading

images/libdebug_logo_horiz.png

-1.43 MB
Binary file not shown.
640 KB
Loading
-2.66 MB
Binary file not shown.

images/libdebug_logo_overlayed.jpg

728 KB
Loading

images/libdebug_logo_overlayed.png

-4.13 MB
Binary file not shown.

images/libdebug_logo_vert.jpg

896 KB
Loading

images/libdebug_logo_vert.png

-4.24 MB
Binary file not shown.

images/pypi.png

5.56 KB
Loading

index.html

+38-6
Original file line numberDiff line numberDiff line change
@@ -14,33 +14,65 @@
1414
align-items: center;
1515
height: 100vh;
1616
margin: 0;
17-
background-color: #f4f4f9;
17+
background-color: #ffffef;
1818
font-family: "Nunito", sans-serif;
1919
}
2020
.container {
21-
text-align: center;
21+
text-align: center;
22+
display: flex;
23+
flex-direction: column;
24+
align-items: center;
25+
}
26+
.icons-container {
27+
display: flex;
28+
justify-content: center;
29+
align-items: center;
2230
}
2331
.logo {
2432
max-width: 600px;
2533
margin-bottom: 20px;
34+
display: none; /* Hide initially */
2635
}
36+
.logo-vertical
37+
{
38+
max-height: 300px;
39+
margin-bottom: 20px;
40+
display: none; /* Hide initially */
41+
}
42+
.logo { display: block; } /* Show horizontal logo initially */
2743
h1 {
2844
font-size: 3em;
2945
margin-bottom: 10px;
3046
}
3147
p {
3248
font-size: 1.2em;
3349
color: #333;
50+
padding-right: 1.5em;
51+
padding-left: 1.5em;
52+
}
53+
.icon {
54+
width: 30px;
55+
margin-right: 10px;
56+
}
57+
@media (orientation: portrait) {
58+
.logo { display: none; }
59+
.logo-vertical { display: block; } /* Ensure this is visible in portrait */
3460
}
3561
</style>
3662
</head>
3763
<body>
3864
<div class="container">
39-
<a href="https://github.com/libdebug/libdebug"><img src="./images/libdebug_logo_horiz.png" alt="libdebug Logo" class="logo"></a>
65+
<a href="https://github.com/libdebug/libdebug">
66+
<img src="./images/libdebug_logo_horiz.jpg" alt="libdebug Logo" class="logo">
67+
<img src="./images/libdebug_logo_vert.jpg" alt="libdebug Logo Vertical" class="logo-vertical">
68+
</a>
4069
<p>A Python library to automate the debugging of a binary executable.</p>
41-
<!-- add icon for docs and pypi and github -->
42-
<a href="https://github.com/libdebug/libdebug" target="_blank"><img src="./images/github-mark/github-mark.png" alt="GitHub" style="width: 30px; margin-right: 10px;"></a>
43-
<a href="https://github.com/libdebug/libdebug" target="_blank"><img src="./images/logo-dark.png" alt="Docs" style="width: 30px; margin-right: 10px;"></a>
70+
<!-- icons -->
71+
<div class="icons-container">
72+
<a href="https://github.com/libdebug/libdebug" target="_blank"><img src="./images/github-mark/github-mark.png" alt="GitHub" style="width: 30px; margin-right: 10px;"></a>
73+
<a href="https://github.com/libdebug/libdebug" target="_blank"><img src="./images/logo-dark.png" alt="Docs" style="width: 30px; margin-right: 10px;"></a>
74+
<a href="https://pypi.org/project/libdebug/" target="_blank"><img src="./images/pypi.png" alt="PyPI" style="width: 30px; margin-right: 10px;"></a>
75+
</div>
4476
</div>
4577
</body>
4678
</html>

0 commit comments

Comments
 (0)