Modification de l'aspect des pricing-items
This commit is contained in:
parent
cd7b11c6e1
commit
1cd6d87481
4 changed files with 15 additions and 12 deletions
File diff suppressed because one or more lines are too long
2
css-compiled/template.min.css
vendored
2
css-compiled/template.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -37,7 +37,7 @@ $image-margin: 2rem;
|
|||
@extend .default-animation;
|
||||
-webkit-transform:translateZ(0);
|
||||
display: inline-grid;
|
||||
width: 40%;
|
||||
width: 80%;
|
||||
margin-left: 0rem;
|
||||
margin-right: 3rem;
|
||||
margin-bottom: 2rem;
|
||||
|
@ -52,11 +52,11 @@ $image-margin: 2rem;
|
|||
width: 22.5%;
|
||||
}
|
||||
&:hover {
|
||||
-webkit-transform:scale(1,1.08);
|
||||
-moz-transform:scale(1,1.08);
|
||||
-ms-transform:scale(1,1.08);
|
||||
-o-transform:scale(1,1.08);
|
||||
transform:scale(1,1.08);
|
||||
-webkit-transform:scale(1,1.03);
|
||||
-moz-transform:scale(1,1.03);
|
||||
-ms-transform:scale(1,1.03);
|
||||
-o-transform:scale(1,1.03);
|
||||
transform:scale(1,1.03);
|
||||
}
|
||||
div {
|
||||
background: $main-bg;
|
||||
|
@ -72,6 +72,9 @@ $image-margin: 2rem;
|
|||
padding-top: 1rem;
|
||||
padding-bottom: 1rem;
|
||||
border-bottom: $border-color 1px solid;
|
||||
text-align: left;
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
}
|
||||
.price {
|
||||
font-weight: bold;
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<div class="price">{{ item.price|raw }}</div>
|
||||
{% for line in item.options %}
|
||||
<div class="info">
|
||||
{{ line }}
|
||||
{{ line | raw }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
<div class="foot">
|
||||
|
|
Loading…
Reference in a new issue