|
14 | 14 | align-items: center;
|
15 | 15 | height: 100vh;
|
16 | 16 | margin: 0;
|
17 |
| - background-color: #f4f4f9; |
| 17 | + background-color: #ffffef; |
18 | 18 | font-family: "Nunito", sans-serif;
|
19 | 19 | }
|
20 | 20 | .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; |
22 | 30 | }
|
23 | 31 | .logo {
|
24 | 32 | max-width: 600px;
|
25 | 33 | margin-bottom: 20px;
|
| 34 | + display: none; /* Hide initially */ |
26 | 35 | }
|
| 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 */ |
27 | 43 | h1 {
|
28 | 44 | font-size: 3em;
|
29 | 45 | margin-bottom: 10px;
|
30 | 46 | }
|
31 | 47 | p {
|
32 | 48 | font-size: 1.2em;
|
33 | 49 | 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 */ |
34 | 60 | }
|
35 | 61 | </style>
|
36 | 62 | </head>
|
37 | 63 | <body>
|
38 | 64 | <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> |
40 | 69 | <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> |
44 | 76 | </div>
|
45 | 77 | </body>
|
46 | 78 | </html>
|
0 commit comments