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