Remove Gallus_Pub and Gallus_Pub_v1 directories along with associated configuration and files

This commit deletes the entire setup for both Gallus_Pub and Gallus_Pub_v1 projects, including `.gitignore`, configuration files, source code, styles, package files, and other related assets.
This commit is contained in:
2025-07-15 20:16:25 +02:00
committed by k
parent 0a939975c3
commit 493c2a94f0
3 changed files with 216 additions and 0 deletions

131
src/styles.css Normal file
View File

@ -0,0 +1,131 @@
/* Global styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
color: #333;
line-height: 1.6;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
}
/* Logo styles */
.logo-container {
margin-bottom: 30px;
}
.logo {
font-size: 48px;
font-weight: bold;
color: #333;
padding: 20px;
border: 3px solid #333;
display: inline-block;
}
.logo img {
max-width: 200px;
height: auto;
display: block;
}
/* Coming soon text */
.coming-soon {
font-size: 36px;
margin-bottom: 40px;
text-transform: uppercase;
letter-spacing: 4px;
}
/* Social links */
.social-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 40px;
}
.social-link {
display: inline-flex;
align-items: center;
padding: 10px 20px;
background-color: #333;
color: white;
text-decoration: none;
border-radius: 30px;
transition: all 0.3s ease;
}
.social-link i {
margin-right: 10px;
font-size: 18px;
}
.social-link:hover {
background-color: #555;
transform: translateY(-3px);
}
/* Opening hours */
.opening-hours {
margin-bottom: 30px;
padding: 20px;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
width: 100%;
max-width: 500px;
}
.opening-hours h2 {
margin-bottom: 15px;
font-size: 24px;
}
.opening-hours p {
margin-bottom: 5px;
}
/* Events note */
.events-note {
font-style: italic;
margin-top: 20px;
padding: 10px;
background-color: #f0f0f0;
border-radius: 5px;
}
/* Responsive adjustments */
@media (max-width: 600px) {
.social-links {
flex-direction: column;
gap: 10px;
}
.logo {
font-size: 36px;
}
.coming-soon {
font-size: 28px;
}
}