40 lines
810 B
CSS
40 lines
810 B
CSS
h1 h2 h3 {
|
|
text-align: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.banner img {
|
|
height: 300px;
|
|
width: 100%;
|
|
object-fit: cover;
|
|
object-position: top center;
|
|
display: block;
|
|
}
|
|
|
|
.body-text {
|
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
|
|
color: #222;
|
|
line-height: 1.5;
|
|
font-size: 16px;
|
|
padding: 18px;
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 1px 4px rgba(0,0,0,0.04);
|
|
}
|
|
|
|
|
|
/* von moodle */
|
|
.container {
|
|
display: flex; /* Aktiviert Flexbox */
|
|
justify-content: space-between; /* Verteilt die Inhalte mit Abstand */
|
|
gap: 10px; /* Abstand zwischen den Inhalten */
|
|
}
|
|
|
|
.ibox0 .ibox1 .ibox2 {
|
|
flex: 1; /* Alle Boxen sind gleich breit */
|
|
background-color: aqua;
|
|
padding-left: 40px;
|
|
padding-right: 40px;
|
|
text-align: center;
|
|
}
|