50b73dff77
add min-width conteiner
178 lines
2.5 KiB
CSS
178 lines
2.5 KiB
CSS
@import url("./input.css");
|
|
|
|
body {
|
|
font-family: "Arial", sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: #333;
|
|
background-color: #f9f9f9;
|
|
min-width: 420px;
|
|
}
|
|
|
|
header {
|
|
background-color: #2e8b57;
|
|
color: white;
|
|
padding: 20px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 2.5em;
|
|
font-weight: bold;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.tagline {
|
|
font-size: 1.2em;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
min-width: 420px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(rgba(46, 139, 87, 0.8), rgba(46, 139, 87, 0.6)),
|
|
url("https://example.com/running-track.jpg");
|
|
background-size: cover;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 80px 20px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 2.8em;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.2em;
|
|
max-width: 700px;
|
|
margin: 0 auto 30px;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-block;
|
|
background-color: #ffd700;
|
|
color: #333;
|
|
padding: 12px 30px;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
transition: background 0.3s;
|
|
}
|
|
|
|
.btn:hover {
|
|
background-color: #e6c200;
|
|
}
|
|
|
|
.section {
|
|
padding: 50px 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.section h2 {
|
|
color: #2e8b57;
|
|
font-size: 2em;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.benefits {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 30px;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.benefit-card {
|
|
background: white;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
padding: 25px;
|
|
max-width: 300px;
|
|
text-align: center;
|
|
}
|
|
|
|
.benefit-card h3 {
|
|
color: #2e8b57;
|
|
}
|
|
|
|
.coach {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 40px;
|
|
margin-top: 40px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.coach-img {
|
|
border-radius: 50%;
|
|
width: 200px;
|
|
height: 200px;
|
|
object-fit: cover;
|
|
border: 5px solid #2e8b57;
|
|
}
|
|
|
|
.coach-info {
|
|
max-width: 500px;
|
|
text-align: left;
|
|
}
|
|
|
|
.coach-info h3 {
|
|
color: #2e8b57;
|
|
font-size: 1.8em;
|
|
}
|
|
|
|
.schedule {
|
|
background-color: #e8f5e9;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
max-width: 800px;
|
|
margin: 30px auto;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
padding: 12px;
|
|
border: 1px solid #ddd;
|
|
text-align: center;
|
|
}
|
|
|
|
th {
|
|
background-color: #2e8b57;
|
|
color: white;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: #f2f2f2;
|
|
}
|
|
|
|
.contact {
|
|
background-color: #2e8b57;
|
|
color: white;
|
|
padding: 50px 20px;
|
|
}
|
|
|
|
.contact a {
|
|
color: #ffd700;
|
|
text-decoration: none;
|
|
}
|
|
|
|
footer {
|
|
background-color: #1a3e23;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 20px;
|
|
font-size: 0.9em;
|
|
}
|