Change category-boxes so it's easier to customize with CSS
This commit is contained in:
parent
85280b0bc8
commit
0238a076f3
|
@ -1,15 +1,16 @@
|
|||
{{#each categories as |c|}}
|
||||
<div class='category-box'>
|
||||
<div class='category-box category-box-{{unbound c.slug}}'>
|
||||
<a href={{c.url}}>
|
||||
{{#if c.uploaded_logo.url}}
|
||||
{{cdn-img src=c.uploaded_logo.url class="logo"}}
|
||||
{{/if}}
|
||||
<div class='category-box-heading'>
|
||||
{{#if c.uploaded_logo.url}}
|
||||
{{cdn-img src=c.uploaded_logo.url class="logo"}}
|
||||
{{/if}}
|
||||
|
||||
<div class='details'>
|
||||
<h3>{{c.name}}</h3>
|
||||
<div class='description'>
|
||||
{{{c.description_excerpt}}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class='description'>
|
||||
{{{c.description_excerpt}}}
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -197,19 +197,6 @@
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.details {
|
||||
h3 {
|
||||
font-size: 1.5em;
|
||||
margin-bottom: 0.5em;
|
||||
margin-top: 0.25em;
|
||||
line-height: 1.1em;
|
||||
}
|
||||
.description {
|
||||
font-size: 1.05em;
|
||||
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 40%));
|
||||
}
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: block;
|
||||
height: 40px;
|
||||
|
@ -230,10 +217,26 @@
|
|||
margin: 0 1% 1.5em 1%;
|
||||
> a {
|
||||
width: 100%;
|
||||
padding: 1em;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
.details {
|
||||
|
||||
.category-box-heading {
|
||||
padding: 1em 1em 0 1em;
|
||||
}
|
||||
|
||||
.description {
|
||||
padding: 0 1em 1em 1em;
|
||||
text-align: center;
|
||||
font-size: 1.05em;
|
||||
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 40%));
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.5em;
|
||||
margin-bottom: 0.5em;
|
||||
margin-top: 0.25em;
|
||||
line-height: 1.1em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue