-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
128 lines (125 loc) · 3.81 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="libdebug is a Python library to debug binary executables, your own way">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>libdebug</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">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">
<style>
body {
background-color: #feffef;
font-family: 'Nunito', sans-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-weight: bold;
font-size: 5.5em;
color: #032f30;
}
.bottom-container {
text-align: center;
margin-bottom: 7em; /* Adjust margin as needed */
}
.btn-container {
margin-bottom: 1em;
}
.btn img {
width: 50px;
height: 50px;
}
@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/libdebug_logo.webp" alt="libdebug logo" class="logo">
<div class="logo-text">libdebug</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 Python library to debug binary executables, your own way.
</p>
</div>
</body>
</html>