This file contains hidden or 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
autoload.lua | |
easycrop.lua | |
quick-scale.lua | |
webm.lua |
This file contains hidden or 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
foreground #ffffff | |
background #1b222d | |
selection_foreground #ffffff | |
selection_background #98a8c5 | |
cursor #ffd484 | |
cursor_text_color #282A36 | |
# black | |
color0 #1b222d | |
color8 #39465e |
This file contains hidden or 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
// Base size for margins | |
$base-size: 16px; | |
// Breakpoints map https://material.io/design/layout/responsive-layout-grid.html#breakpoints | |
$grid-breakpoints-map: ( | |
xs-small: ( | |
width: 360px, | |
column: 4, | |
margin: $base-size | |
), |
This file contains hidden or 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
// Elevation map https://material.io/design/environment/elevation.html#default-elevations | |
// Overlay map https://material.io/design/color/dark-theme.html#properties | |
// TO DO add all values from the material design guidelines | |
$elevation-map: ( | |
body: ( | |
elevation: 0dp, | |
overlay: 0% | |
), | |
header: ( | |
elevation: 4dp, |
This file contains hidden or 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
//easy animation control | |
@mixin animation($name, $duration, $timing, $loop) { | |
animation: $name $duration $timing $loop; | |
} | |
//simple aspect ratio | |
@mixin aspect-ratio($width, $height) { | |
padding-top: ($height / $width) * 100%; | |
} |
This file contains hidden or 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
picture { | |
cursor: zoom-in; | |
height: 0; | |
max-height: 1250px; | |
max-width: 1400px; | |
padding-top: 50%; | |
position: relative; | |
width: 100%; | |
&::before { |
This file contains hidden or 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
<p class="tag">{{ post.tags | join: ', ' }}</p> | |
<!-- For loop --> | |
{% for tag in post.tags %} | |
<li class="tag">{{ tag }}</li> | |
{% endfor %} |