Skip to content

Commit 383122b

Browse files
committed
Update color font in code tags and upgrade the logo from static to animated
1 parent e04da77 commit 383122b

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

index.html

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,17 +71,22 @@
7171
<h2 class="text-center font-bold mb-10 text-2xl">Bridgex</h2>
7272
<div id="new-project" class="lg:w-[90vh] w-[90vw] rounded-xl shadow-xl shadow-black px-10">
7373
<div class="pswp-gallery" id="my-gallery">
74-
<div class="flex justify-center mb-4">
75-
<a href="https://cdn.jsdelivr.net/gh/tutosrive/images-projects-srm-trg@main/dev2forge/pymd/logo-pymd-2.png" data-pswp-width="1200" data-pswp-height="1200" target="_blank">
74+
<div id="logo-bridgex" class="flex justify-center mb-4">
75+
<a href="https://cdn.jsdelivr.net/gh/tutosrive/images-projects-srm-trg@main/dev2forge/pymd/bridgex/bridgex-logo-animated.webp" data-pswp-width="1200" data-pswp-height="1200" target="_blank">
7676
<img
7777
class="max-w-[300px] h-auto object-contain drop-shadow-2xl drop-shadow-black"
78-
src="https://cdn.jsdelivr.net/gh/tutosrive/images-projects-srm-trg@main/dev2forge/pymd/logo-pymd-2.png"
78+
src="https://cdn.jsdelivr.net/gh/tutosrive/images-projects-srm-trg@main/dev2forge/pymd/bridgex/bridgex-logo-animated.webp"
7979
alt="Logo featuring a green snake curled into a circular shape, wearing a red necktie, set against a dark background."
8080
/>
8181
</a>
8282
</div>
8383
<div id="new-project-description">
84-
<code class="flex justify-center select-all">pip install bridgex</code>
84+
<div class="flex justify-center">
85+
<div class="grid gap-2 grid-cols-1 sm:grid-cols-2 m-2 text-center">
86+
<code class="select-all text-center">pip install bridgex</code>
87+
<a class="flex w-full justify-center" href="https://pepy.tech/projects/bridgex"><img src="https://static.pepy.tech/badge/bridgex" alt="PyPI Downloads" /></a>
88+
</div>
89+
</div>
8590
<p>
8691
Bridgex is an open-source graphical interface for converting files to Markdown, built in Python and based on <a href="https://doc.qt.io/qtforpython-6/" target="_blank">Pyside6 (Qt for Python)</a>. Its objective is to simplify access to the
8792
<a href="https://github.com/microsoft/markitdown" target="_blank">Markitdown</a> library through a straightforward, modular visual experience.

src/assets/css/index.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ code {
1515
border-radius: 4px;
1616
font-family: 'Courier New', Courier, monospace;
1717
user-select: all;
18+
color: rgb(179, 255, 0);
1819
}
1920

2021
#description h2 {

src/assets/js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ function __setScrollableTables(container) {
100100
function imagePreview() {
101101
const lightbox = new PhotoSwipeLightbox({
102102
gallery: '#my-gallery',
103-
children: 'div>a',
103+
children: '#my-gallery > div:not(#new-project-description) > a',
104104
pswpModule: () => import('https://unpkg.com/photoswipe'),
105105
});
106106

0 commit comments

Comments
 (0)