- Changed background and text colors in `styles.css` for a refreshed look. - Updated logo implementation in `index.html` to use an actual image. - Adjusted social links and opening hours information. - Added Font Awesome library to the project configuration. - Included new logo image in the `public` directory.
132 lines
2.1 KiB
CSS
132 lines
2.1 KiB
CSS
/* Global styles */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Arial', sans-serif;
|
|
background-color: #213b28;
|
|
color: #ceb39b;
|
|
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: #3C2A26;
|
|
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;
|
|
}
|
|
}
|