diff --git a/docs/download.shtml b/docs/download.shtml index b57aedf..9a18780 100755 --- a/docs/download.shtml +++ b/docs/download.shtml @@ -26,20 +26,20 @@ dynamics simulations.

Download alternatives:

-1. [Packmol.jl]: +1. [Packmol.jl]: 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.

2. -[LATEST RELEASE REPOSITORY]: +[LATEST RELEASE REPOSITORY]: This is the repository of the source-code of the latest release of Packmol. Download the zip or tar.gz file files, which contain the source code. Next, follow the installation instructions to install the package.

-3. conda-forge/packmol-feedstock]: +3. conda-forge/packmol-feedstock]: 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. diff --git a/docs/estilo.css b/docs/estilo.css index c80065b..f230a34 100755 --- a/docs/estilo.css +++ b/docs/estilo.css @@ -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; + } +} +