This commit is contained in:
Illia Hromovoi 2025-06-26 12:10:34 +02:00
commit b038312ae3
3 changed files with 51 additions and 6 deletions

0
CSS/Element/card.css Normal file
View File

View File

@ -4,6 +4,7 @@
@import url(Element/logo.css); @import url(Element/logo.css);
@import url(Element/form.css); @import url(Element/form.css);
@import url(Element/button.css); @import url(Element/button.css);
@import url(Element/card.css);
*, *:before, *:after { *, *:before, *:after {
-moz-box-sizing: border-box; -moz-box-sizing: border-box;

View File

@ -1,9 +1,53 @@
<?php <?php include dirname(__DIR__) . '/header.phtml'; ?>
include dirname(__DIR__).'/header.phtml';
?> <article style="background-color: #1f1b15; padding: 40px 20px; min-height: 100vh; font-family: sans-serif;">
<h2 style="color: orange; font-size: 28px; margin-bottom: 40px;">Kurse</h2>
<div style="
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: space-between;
max-width: 100%;
">
<?php for ($i = 0; $i < 6; $i++): ?>
<div style="
flex: 0 0 calc(33.333% - 20px);
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
min-height: 300px;
display: flex;
flex-direction: column;
">
<div style="background-color: #eee; height: 200px;"></div>
<div style="
background-color: orange;
color: white;
padding: 20px;
font-size: 18px;
display: flex;
justify-content: space-between;
align-items: center;
">
<div>
<div style="font-weight: bold;">5 ★ &nbsp; Marketing Pro</div>
<div style="font-size: 14px;">Bulu ulu Straße 17</div>
</div>
<div style="text-align: right;">
<div style="font-weight: bold;">59,99€</div>
<div style="font-size: 14px;">33333 Frankfurt</div>
</div>
</div>
</div>
<?php endfor; ?>
</div>
<article>
HIER LANDING PAGE
</article> </article>
<?php include dirname(__DIR__).'/footer.phtml'; ?>
<?php include dirname(__DIR__) . '/footer.phtml'; ?>