<div class="box box--sand box--tool">
<div class="box__content">
<form class="form form--inline">
<div class="form__inner">
<div class="form-group">
<label class="label" for="gross-income"></label>
<div class="form-group__inner">
<input class="input input--text input--borderless" type="text" placeholder="Diagnoseschlüssel eingeben (z. B. A05.9)" required="required" id="gross-income" name="gross-income" />
</div>
</div>
<div class="form__submit">
<input class="button button--blue" type="submit" value="Finden" />
</div>
</div>
</form>
</div>
</div>
-
//- Prepare attr object
attr = attr || {};
attr.class = classList(attr.class);
attr.class.push(`box--${color || 'light-blue'}`);
//- Tool box
if (tool) attr.class.push('box--tool');
//- Growing box
if (grow) attr.class.push('box--grow');
//- Render box
.box&attributes(attr)
//- Icon
if icon
.box__icon
!= include('@icon', {icon})
//- Box content
.box__content
//- Headline
if headline
.box__headline
- headlineOptions = Object.assign({}, {text: headline, hkkPlus}, headlineOptions)
!= include('@headline--headline-1', headlineOptions)
//- Content
if content
!= renderPug(content)
//- More link
if link
.box__more
!= include('@teaser-link', {link, text: more || 'Weitere Informationen'})
{
"headline": null,
"color": "sand",
"more": "Weitere Informationen",
"link": null,
"hkkPlus": null,
"headlineOptions": {
"level": 3
},
"tool": true,
"content": "!= include('@form--borderless')\n"
}
.box {
background-color: $color-steelgrey-light;
display: flex;
font-size: 1.5rem;
margin-bottom: 3rem;
padding: 2.5rem 2.5rem 1rem;
@include mq($from: m) {
display: block;
}
}
.box--tool {
.box__content {
margin: 0 auto;
}
@include mq($from: m) {
padding: 4rem 5rem 3rem;
}
}
.box--bordered {
background-color: transparent;
border: 0.5rem solid $color-steelgrey-light;
padding: 2rem 2rem 0.5rem;
}
.box--sand {
background-color: $color-sand;
.form-micro {
margin-top: 3rem;
}
}
.box--grow {
@include mq($from: m) {
height: 100%;
margin: 0;
}
}
.box__icon {
color: rgba(#333, 0.2);
font-size: 8rem;
line-height: 1;
margin-left: 1.5rem;
order: 1;
width: 8rem;
@include mq($from: m) {
margin-left: 0;
padding-bottom: 2.5rem;
padding-top: 0.5rem;
text-align: center;
width: 100%;
}
}
.box__content {
flex-shrink: 1;
max-width: 100%;
}
.box__more {
margin-bottom: 1.5rem;
}
There are no notes for this item.