No edit summary |
No edit summary |
||
Line 39: | Line 39: | ||
font-size: 1.2em; | font-size: 1.2em; | ||
font-weight: bold; | font-weight: bold; | ||
} | |||
.featured-section { | |||
background: #2c2c2c; | |||
padding: 20px; | |||
border-radius: 8px; | |||
margin-bottom: 20px; | |||
color: #fff; | |||
} | |||
.featured-content { | |||
display: flex; | |||
align-items: center; | |||
} | |||
.featured-content img { | |||
max-width: 150px; | |||
margin-right: 20px; | |||
border-radius: 8px; | |||
} | } | ||
Revision as of 03:28, 25 November 2024
/* CSS placed here will be applied to all skins */
body.page-Main_Page {
background: url('https://predictive-pulse.com/images/5ean444_winter_cabin_forest_snow_night_sky_stars_peaceful_reali_fc7e7992-0c1e-4564-bf78-2930ff9dc2f9.png') no-repeat center center fixed;
background-size: cover;
}
.main-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
margin: 20px auto;
max-width: 1200px;
}
.grid-item {
text-align: center;
background: #2c2c2c;
border-radius: 8px;
padding: 10px;
transition: transform 0.3s ease;
}
.grid-item:hover {
transform: scale(1.05);
}
.grid-item img {
max-width: 100%;
height: auto;
border-radius: 8px;
}
.grid-item span {
display: block;
margin-top: 10px;
color: #fff;
font-size: 1.2em;
font-weight: bold;
}
.featured-section {
background: #2c2c2c;
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
color: #fff;
}
.featured-content {
display: flex;
align-items: center;
}
.featured-content img {
max-width: 150px;
margin-right: 20px;
border-radius: 8px;
}
#footer-places {
display: none; /* Hides the footer links like Privacy Policy, About, Disclaimers */
}