Browse Source

Merge pull request #76 from sakelestemur/master

Set sticky header shrink by default
pull/80/head
Igor Seletskiy 3 years ago
committed by GitHub
parent
commit
a2eee1909a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      www/templates/_partial/navbar.html

10
www/templates/_partial/navbar.html

@ -21,7 +21,7 @@
} }
.announcement { .announcement {
width:100%; width:100%;
height: 400px; height: 100px;
background:url("{% static 'images/screen-banner.png' %}") #0E2236; background:url("{% static 'images/screen-banner.png' %}") #0E2236;
background-position:top; background-position:top;
background-repeat:no-repeat; background-repeat:no-repeat;
@ -32,7 +32,7 @@
@media only screen and (min-width:2560px) { @media only screen and (min-width:2560px) {
.announcement { .announcement {
width:100%; width:100%;
height: 400px; height: 100px;
background:url("{% static 'images/wide-screen.png' %}"); background:url("{% static 'images/wide-screen.png' %}");
background-position:top; background-position:top;
} }
@ -93,15 +93,15 @@
right:50px; right:50px;
top:15px; top:15px;
z-index:1; z-index:1;
background:url("{% static 'images/up-arrow.png' %}") #fff; background:url("{% static 'images/down-arrow.png' %}") #fff;
border-radius:100px; border-radius:100px;
cursor:pointer; cursor:pointer;
} }
.chk:checked + .chk-label span { .chk:checked + .chk-label span {
background:url("{% static 'images/down-arrow.png' %}") #fff; background:url("{% static 'images/up-arrow.png' %}") #fff;
} }
.chk:checked ~ .sticky-link .announcement { .chk:checked ~ .sticky-link .announcement {
height:100px; height:400px;
} }
#chk-close { #chk-close {
display:none; display:none;

Loading…
Cancel
Save