Skip to content

Commit c9d3d64

Browse files
committed
First version of the site
0 parents  commit c9d3d64

9 files changed

+129
-0
lines changed

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lidbebug.org

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# lidbebug.github.io
2+
Website for lidbebug

favicon.ico

16.6 KB
Binary file not shown.

images/docs-logo-dark.webp

11.1 KB
Binary file not shown.

images/github-mark.webp

2.49 KB
Binary file not shown.

images/libdebug_logo.webp

253 KB
Binary file not shown.

images/lidbebug_logo.webp

269 KB
Binary file not shown.

images/pypi.webp

4.25 KB
Binary file not shown.

index.html

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="description" content="A most wondrous Python librarie to deftly debogge binarie executables, in thyne owne singular and artful wise.">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>libdebug</title>
8+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
9+
<style>
10+
body {
11+
background-color: #feffef;
12+
font-family: 'Times New Roman', Times, serif;
13+
display: flex;
14+
flex-direction: column;
15+
justify-content: space-between;
16+
align-items: center;
17+
height: 100vh;
18+
margin: 0;
19+
}
20+
p {
21+
font-size: 1.5em;
22+
}
23+
.container {
24+
text-align: center;
25+
display: flex;
26+
flex-direction: column;
27+
justify-content: center;
28+
align-items: center;
29+
flex: 1;
30+
padding: 2em;
31+
}
32+
.logo-container {
33+
margin-top: 7em;
34+
display: flex;
35+
flex-direction: column;
36+
align-items: center;
37+
justify-content: center;
38+
}
39+
.logo {
40+
max-width: 15em;
41+
max-height: 15em;
42+
}
43+
.logo-text {
44+
font-size: 5.5em;
45+
color: #032f30;
46+
}
47+
.bottom-container {
48+
text-align: center;
49+
margin-bottom: 7em; /* Adjust margin as needed */
50+
}
51+
.btn-container {
52+
margin-bottom: 1em;
53+
}
54+
.btn img {
55+
width: 50px;
56+
height: 50px;
57+
}
58+
@media (min-aspect-ratio: 4/3) {
59+
.logo-container {
60+
flex-direction: row;
61+
}
62+
.logo-text {
63+
margin-top: 0;
64+
margin-left: 0.3em; /* Reduced margin */
65+
}
66+
}
67+
@media (max-aspect-ratio: 4/3) {
68+
.logo-container {
69+
flex-direction: column;
70+
}
71+
.logo-text {
72+
margin-left: 0;
73+
}
74+
.top-container {
75+
margin-top: 3em; /* Adjust margin as needed */
76+
}
77+
.bottom-container {
78+
margin-bottom: 3em; /* Adjust margin as needed */
79+
}
80+
}
81+
@media (max-width: 480px) {
82+
p {
83+
font-size: 1.2em;
84+
}
85+
.logo-text {
86+
font-size: 4em;
87+
}
88+
.logo {
89+
max-width: 10em;
90+
max-height: 10em;
91+
}
92+
.btn img {
93+
width: 40px;
94+
height: 40px;
95+
}
96+
}
97+
</style>
98+
</head>
99+
<body>
100+
101+
<div class="container">
102+
<div class="logo-container">
103+
<img src="images/lidbebug_logo.webp" alt="lidbebug logo" class="logo">
104+
<div class="logo-text">LIDBEBVG</div>
105+
</div>
106+
</div>
107+
108+
<div class="bottom-container">
109+
<div class="btn-container">
110+
<a href="https://github.com/libdebug/libdebug" class="btn">
111+
<img src="images/github-mark.webp" alt="GitHub Repository">
112+
</a>
113+
<a href="https://docs.libdebug.org" class="btn">
114+
<img src="images/docs-logo-dark.webp" alt="libdebug Documentation">
115+
</a>
116+
<a href="https://pypi.org/project/libdebug/" class="btn">
117+
<img src="images/pypi.webp" alt="PyPI Website">
118+
</a>
119+
</div>
120+
121+
<p>
122+
A most wondrous Python librarie to deftly debogge binarie executables, in thyne owne singular and artful wise.
123+
</p>
124+
</div>
125+
</body>
126+
</html>

0 commit comments

Comments
 (0)