Skip to content

Commit

Permalink
blink with css
Browse files Browse the repository at this point in the history
  • Loading branch information
lmiq committed Aug 14, 2024
1 parent b1436a3 commit 03751f8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/download.shtml
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@ dynamics simulations.</b>

<h3>Download alternatives:</h3>

<b>1. </b><a target=_blank_ href="https://github.com/m3g/Packmol.jl#packmol"><blink><b>[Packmol.jl]: </b></blink></a>
<b>1. </b><a target=_blank_ href="https://github.com/m3g/Packmol.jl#packmol"><span class="blink"><b>[Packmol.jl]: </b></span></a>
This is a multi-platform wrapper for Packmol, written in Julia. It is easy to use and install.
Follow the instructions in the README file of the repository to install the package.

<br><br>
<b>2.</b><a target=_blank_ href=https://github.com/m3g/packmol/releases/latest target=_blank_>
<blink><b>[LATEST RELEASE REPOSITORY]:</b></blink></a>
<span class="blink"><b>[LATEST RELEASE REPOSITORY]:</b></span></a>
This is the repository of the source-code of the latest release of Packmol.
Download the <tt>zip</tt> or <tt>tar.gz</tt> file files, which contain the source code.
Next, follow the <a href="./userguide.shtml">installation instructions</a> to install the
package.

<br><br>
<b>3. </b><a href=https://github.com/conda-forge/packmol-feedstock><blink><b>conda-forge/packmol-feedstock]:</b></blink></a>
<b>3. </b><a href=https://github.com/conda-forge/packmol-feedstock><span class="blink"><b>conda-forge/packmol-feedstock]:</b></span></a>
Packmol is also available through conda and mamba package managers.
We *do not* maintain these packages, so please report any issues to the maintainers of the conda-forge feedstock.

Expand Down
17 changes: 17 additions & 0 deletions docs/estilo.css
Original file line number Diff line number Diff line change
Expand Up @@ -197,3 +197,20 @@ font: bold 16px/24px arial, helvetica, sans-aerif;
color: var(--cp3);
text-decoration: none;
}

.blink {
animation: blink 1s infinite;
}

@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}

0 comments on commit 03751f8

Please sign in to comment.