-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 0.1 release; Documentation update
- Loading branch information
Renan
committed
Jun 13, 2019
1 parent
33f862d
commit 627b485
Showing
7 changed files
with
2,703 additions
and
1 deletion.
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
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,62 @@ | ||
/** | ||
Massimp - v0.1 | ||
https://github.com/Niemietz/massimp | ||
Written in JavaScript (ES6) | ||
Created by Renan Niemietz Cardoso | ||
*/ | ||
|
||
.massimp-container .massimp-table-group | ||
{ | ||
overflow-y: auto; | ||
} | ||
|
||
.massimp-img-thumbnail | ||
{ | ||
padding: .25rem; | ||
background-color: #fff; | ||
border: 1px solid #dee2e6; | ||
border-radius: .25rem; | ||
max-width: 100%; | ||
height: auto; | ||
} | ||
|
||
.thumbnail { | ||
max-width: 40%; | ||
} | ||
|
||
.italic { font-style: italic; } | ||
.small { font-size: 0.8em; } | ||
|
||
/** LIGHTBOX MARKUP **/ | ||
|
||
.lightbox { | ||
/** Default lightbox to hidden */ | ||
display: none; | ||
|
||
/** Position and style */ | ||
position: fixed; | ||
z-index: 999; | ||
width: 100%; | ||
height: 100%; | ||
text-align: center; | ||
top: 0; | ||
left: 0; | ||
background: rgba(0,0,0,0.8); | ||
cursor: default; | ||
} | ||
|
||
.lightbox img { | ||
/** Pad the lightbox image */ | ||
max-width: 90%; | ||
max-height: 80%; | ||
margin-top: 2%; | ||
} | ||
|
||
.lightbox:target { | ||
/** Remove default browser outline */ | ||
outline: none; | ||
|
||
/** Unhide lightbox **/ | ||
display: block; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.