-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added UIkit grid width used in the post gallery.
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* Grid modifiers | ||
========================================================================== */ | ||
|
||
.uk-grid-width-1-7 > * { width: 14.285714285%; } | ||
.uk-grid-width-1-8 > * { width: 12.5%; } | ||
.uk-grid-width-1-9 > * { width: 11.111111111%; } | ||
|
||
/* Phone landscape and bigger */ | ||
@media (min-width: @breakpoint-small) { | ||
|
||
.uk-grid-width-small-1-7 > * { width: 14.285714285%; } | ||
.uk-grid-width-small-1-8 > * { width: 12.5%; } | ||
.uk-grid-width-small-1-9 > * { width: 11.111111111%; } | ||
|
||
} | ||
|
||
/* Tablet and bigger */ | ||
@media (min-width: @breakpoint-medium) { | ||
|
||
.uk-grid-width-medium-1-7 > * { width: 14.285714285%; } | ||
.uk-grid-width-medium-1-8 > * { width: 12.5%; } | ||
.uk-grid-width-medium-1-9 > * { width: 11.111111111%; } | ||
|
||
} | ||
|
||
/* Desktop and bigger */ | ||
@media (min-width: @breakpoint-large) { | ||
|
||
.uk-grid-width-large-1-7 > * { width: 14.285714285%; } | ||
.uk-grid-width-large-1-8 > * { width: 12.5%; } | ||
.uk-grid-width-large-1-9 > * { width: 11.111111111%; } | ||
|
||
} | ||
|
||
/* Large screen and bigger */ | ||
@media (min-width: @breakpoint-xlarge) { | ||
|
||
.uk-grid-width-xlarge-1-7 > * { width: 14.285714285%; } | ||
.uk-grid-width-xlarge-1-8 > * { width: 12.5%; } | ||
.uk-grid-width-xlarge-1-9 > * { width: 11.111111111%; } | ||
|
||
} |