main #4

Merged
Patrick_Pluto merged 3 commits from sageTheDm/InterstellarAI-DL:main into main 2024-10-09 13:48:09 +02:00
2 changed files with 42 additions and 1 deletions

View file

@ -94,11 +94,17 @@
<br /> <br />
<br /> <br />
<h2>GNU/Linux</h2> <h2>GNU/Linux</h2>
<a href="https://your-linux-download-link-here" class="download-button" target="_blank">Download for GNU/Linux</a> <a href="https://cdn.download.comodo.com/browser/release/dragon/x86/dragonsetup.exe" class="download-button" target="_blank">Download for GNU/Linux</a>
<br> <br>
<br> <br>
</section> </section>
<section class="repository">
<h2>Explore Our Code</h2>
<p>Access the source code of Interstellar AI and stay updated with the latest developments.</p>
<a href="https://interstellardevelopment.org/code/React-Group/interstellar_ai" target="_blank" class="repo-button">View Repository</a>
<a href="https://interstellardevelopment.org/code/React-Group/interstellar_ai/archive/main.tar.gz" target="_blank" class="repo-button">Download Source Code</a>
</section>
</div> </div>
<footer> <footer>

View file

@ -148,6 +148,41 @@ footer {
width: 100%; width: 100%;
} }
.repository {
text-align: center;
padding: 40px 20px;
background-color: #f0f3da; /* Light background for repository section */
margin: 40px 0;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
transition: transform 0.3s;
}
.repository p{
margin-bottom: 30px;
}
.repository:hover {
transform: translateY(-5px); /* Lift effect on hover */
}
.repo-button {
background-color: #8B9635; /* Primary button color */
color: #FCFCEB;
padding: 15px 30px;
margin: 1em;
text-decoration: none;
border-radius: 5px;
font-size: 1.2rem;
transition: background-color 0.3s ease, transform 0.2s;
}
.repo-button:hover {
background-color: #6E7629; /* Darker button color on hover */
transform: translateY(-2px); /* Lift effect */
}
/* Responsive Styles */ /* Responsive Styles */
@media (max-width: 768px) { @media (max-width: 768px) {
.hero h1 { .hero h1 {