hidden footer excerpt and given min height
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 975 KiB After Width: | Height: | Size: 975 KiB |
Before Width: | Height: | Size: 3.1 MiB After Width: | Height: | Size: 1.8 MiB |
Before Width: | Height: | Size: 3.4 MiB After Width: | Height: | Size: 3.3 MiB |
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 60 KiB |
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 16 KiB |
|
@ -0,0 +1,6 @@
|
|||
/**
|
||||
* what-input - A global utility for tracking the current input method (mouse, keyboard or touch).
|
||||
* @version v4.3.1
|
||||
* @link https://github.com/ten1seven/what-input
|
||||
* @license MIT
|
||||
*/
|
|
@ -147,19 +147,9 @@ $grid-column-width:$grid-row-width/$grid-column-count;
|
|||
overflow:hidden;
|
||||
@include breakpoint(small) {
|
||||
max-height: ( 100vw / 2 );
|
||||
footer {
|
||||
@include breakpoint(small) {
|
||||
padding-top: $global-padding;
|
||||
}
|
||||
}
|
||||
}
|
||||
@include breakpoint(medium) {
|
||||
max-height: ( 100vw / 3 );
|
||||
footer {
|
||||
@include breakpoint(medium) {
|
||||
padding-top: $global-padding * 5;
|
||||
}
|
||||
}
|
||||
}
|
||||
@include breakpoint(large) {
|
||||
max-height: ( 100vw / 5 );
|
||||
|
@ -167,6 +157,14 @@ $grid-column-width:$grid-row-width/$grid-column-count;
|
|||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
@include breakpoint(small) {
|
||||
padding-top: $global-padding;
|
||||
}
|
||||
@include breakpoint(medium) {
|
||||
padding-top: $global-padding * 5;
|
||||
}
|
||||
.post-excerpt {
|
||||
display:none;
|
||||
}
|
||||
|
|