renamed: begushiybashkir/allPhoto/AtylqrEsbMCdt79zyh8qtA4Z9zeBM9kpp6T7NGukNUnm1aYHA6D52sQNmRzTE18LIWiBwdk9oZllNZWihCPZJFXG.jpg -> begushiybashkir/allPhoto/mainPhoto.jpg

modified:   begushiybashkir/src/index.html
	new file:   begushiybashkir/src/photo/mainPhoto.jpg
	new file:   begushiybashkir/src/photo/sprinting-athletics-man-scaled.jpg
	new file:   begushiybashkir/src/style/descktop.css
	new file:   begushiybashkir/src/style/mobile.css
	modified:   begushiybashkir/src/style/style.css
	new file:   begushiybashkir/src/style/tablet.css
delete table and add card for each days in week
This commit is contained in:
valitovgaziz
2025-08-13 07:50:10 +05:00
parent 4937be9d35
commit 77672dc6ec
8 changed files with 64 additions and 47 deletions
+27 -28
View File
@@ -72,34 +72,33 @@
</section>
<section class="section schedule">
<div class="container">
<h2>Расписание тренировок</h2>
<table>
<tr>
<th>День недели</th>
<th>Время</th>
<th>Место</th>
<th>Тип тренировки</th>
</tr>
<tr>
<td>Понедельник</td>
<td>19:00</td>
<td>Парк Победы</td>
<td>Интервальный бег</td>
</tr>
<tr>
<td>Среда</td>
<td>19:00</td>
<td>Стадион "Динамо"</td>
<td>Техника бега + ОФП</td>
</tr>
<tr>
<td>Суббота</td>
<td>09:00</td>
<td>Набережная реки Белой</td>
<td>Длительный кросс</td>
</tr>
</table>
<div class="container week">
<div>
<h2>Расписание тренировок</h2>
</div>
<div class="days">
<div class="day">
<p>Понедельник в 19.30 Техника бега + ОФП</p>
</div>
<div class="day">
<p>Вторник восстановление</p>
</div>
<div class="day">
<p>Среда в 19.30 Техника бега + СБУ</p>
</div>
<div class="day">
<p>Четверг восстановление</p>
</div>
<div class="day">
<p>Пятница восстановление</p>
</div>
<div class="day">
<p>Суббота в 10.00 Длительный кросс</p>
</div>
<div class="day">
<p>Воскресенье восстановление</p>
</div>
</div>
</div>
</section>
Binary file not shown.

After

Width:  |  Height:  |  Size: 706 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 425 KiB

+37 -19
View File
@@ -35,13 +35,17 @@ header {
}
.hero {
background: linear-gradient(rgba(46, 139, 87, 0.8), rgba(46, 139, 87, 0.6)),
url("https://example.com/running-track.jpg");
background: linear-gradient(
rgba(32, 133, 77, 0.699),
rgba(44, 139, 85, 0.705)
),
url("../photo/mainPhoto.jpg");
background-size: cover;
color: white;
text-align: center;
padding: 80px 20px;
margin-bottom: 30px;
background-position: center 40%;
}
.hero h1 {
@@ -69,6 +73,7 @@ header {
.btn:hover {
background-color: #e6c200;
cursor: pointer;
}
.section {
@@ -132,30 +137,38 @@ header {
.schedule {
background-color: #e8f5e9;
padding: 40px 20px;
}
table {
width: 100%;
max-width: 800px;
margin: 30px auto;
border-collapse: collapse;
height: 100%;
}
th,
td {
padding: 12px;
border: 1px solid #ddd;
text-align: center;
.week {
background-color: #ffd700;
display: flex;
flex-wrap: wrap;
flex-direction: column;
}
th {
background-color: #2e8b57;
color: white;
.days {
display: flex;
gap: 2em;
flex-direction: row;
flex-wrap: wrap;
}
tr:nth-child(even) {
background-color: #f2f2f2;
.day {
background-color: aqua;
width: 150px;
height: 150px;
border-radius: 1em;
padding: 5px;
margin: 0;
justify-content: center;
align-items: center;
}
.day p {
display: flex;
background-color: #3feb6a;
}
.contact {
@@ -194,6 +207,11 @@ tr:nth-child(even) {
margin: 1em;
}
.contact .container button:hover {
background-color: #e6c200;
cursor: pointer;
}
footer {
background-color: #1a3e23;
color: white;