fix broken if statements in css
This commit is contained in:
parent
2e3ba13c81
commit
f8f34e4ce0
12
css/main.css
12
css/main.css
@ -175,19 +175,19 @@ img {
|
|||||||
.navbar-custom .avatar-container .avatar-img-border {
|
.navbar-custom .avatar-container .avatar-img-border {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
{% if site.round-avatar | default: true %}
|
{% unless site.round-avatar == false %}
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
margin-left: -50%;
|
margin-left: -50%;
|
||||||
box-shadow: 0 0 8px rgba(0, 0, 0, .8);
|
box-shadow: 0 0 8px rgba(0, 0, 0, .8);
|
||||||
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .8);
|
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .8);
|
||||||
-moz-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
|
-moz-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
|
||||||
{% endif %}
|
{% endunless %}
|
||||||
}
|
}
|
||||||
.navbar-custom .avatar-container .avatar-img {
|
.navbar-custom .avatar-container .avatar-img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
{% if site.round-avatar | default: true %}
|
{% unless site.round-avatar == false %}
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
{% endif %}
|
{% endunless %}
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -203,11 +203,11 @@ img {
|
|||||||
|
|
||||||
.navbar-custom .avatar-container .avatar-img-border {
|
.navbar-custom .avatar-container .avatar-img-border {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
{% if site.round-avatar | default: true %}
|
{% unless site.round-avatar == false %}
|
||||||
box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
|
box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
|
||||||
-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
|
-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
|
||||||
-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
|
-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
|
||||||
{% endif %}
|
{% endunless %}
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-custom .avatar-container .avatar-img {
|
.navbar-custom .avatar-container .avatar-img {
|
||||||
|
Loading…
Reference in New Issue
Block a user