Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,71 @@
# Build and Release Folders
bin/
bin-debug/
bin-release/
[Oo]bj/ # FlashDevelop obj
[Bb]in/ # FlashDevelop bin

# Other files and folders
.settings/

# lock
*.lock

# Executables
*.swf
*.air
*.ipa
*.apk

# Hugo
public/
resources/

# Backup Files
*.markdown~
*.md~

# Apache
.htpasswd

# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Build directories
public
dist
resources

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
package-lock.json
bower_components

# Mac File System File...utterly useless to anyone but me.
.DS_Store

# AWS stuff for publishing static files
.aws-credentials.json
.awspublish*
29 changes: 15 additions & 14 deletions static/shortcode-gallery/justified_gallery/justifiedGallery.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Copyright (c) 2018 Miro Mannino
* Licensed under the MIT license.
*/
.justified-gallery {
.justified-gallery {
width: 100%;
position: relative;
overflow: hidden;
Expand Down Expand Up @@ -39,26 +39,27 @@
.justified-gallery > a > .caption,
.justified-gallery > div > .caption,
.justified-gallery > figure > .caption {
display: none;
display: block;
position: absolute;
bottom: 0;
padding: 5px;
background-color: #000000;
background: linear-gradient(0deg, #000000b3, #0000004d 70%, #0000);
bottom: 0;
box-sizing: border-box;
color: #fff;
font-size: 13px;
left: 0;
right: 0;
margin: 0;
color: white;
font-size: 12px;
font-weight: 300;
font-family: sans-serif;
margin-bottom: 0;
max-height: 60%;
overflow: auto;
padding: 0 8px 8px;
text-align: center;
width: 100%;
will-change: transform;
}
.justified-gallery > a > .caption.caption-visible,
.justified-gallery > div > .caption.caption-visible,
.justified-gallery > figure > .caption.caption-visible {
display: initial;
filter: "alpha(opacity=70)";
opacity: 0.7;
transition: opacity 500ms ease-in;
display: block;
}
.justified-gallery > .entry-visible {
filter: "alpha(opacity=100)";
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.