36 lines
858 B
HTML
36 lines
858 B
HTML
<style>
|
|
.welcome-guides > header {
|
|
background: url('/app/assets/images/cards/eic_purple_banner.png');
|
|
background-position: top;
|
|
background-size: contain !important;
|
|
background-repeat: no-repeat;
|
|
background-color: #5336a3;
|
|
border-bottom: 4px solid white !important;
|
|
}
|
|
|
|
.welcome-guides .list {
|
|
display: grid;
|
|
grid-gap: var(--eicui-base-spacing-m);
|
|
grid-template-columns: repeat(auto-fill, 240px);
|
|
}
|
|
|
|
.welcome-guides .list section{
|
|
text-align: center;
|
|
}
|
|
|
|
.welcome-guides .list img{
|
|
height: 130px;
|
|
}
|
|
|
|
|
|
</style>
|
|
<article eiccard media class="welcome-guides">
|
|
<header>
|
|
<h1>Welcome guides</h1>
|
|
</header>
|
|
<section class="guides">
|
|
<div class="list">
|
|
|
|
</div>
|
|
</section>
|
|
</article> |