Skip to content

Commit

Permalink
Version 0.1 release; Documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
Renan committed Jun 13, 2019
1 parent 33f862d commit 627b485
Show file tree
Hide file tree
Showing 7 changed files with 2,703 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,9 @@ processMassiveImport | Process/Calculate the massive data | function | void

Event | Description
--- | ---
after.mp.process | This event fires when the procedure/calculation is done
after.mp.process | This event fires when the procedure/calculation is done

## Support

If you're having any issue by using Massimp, contact me through the following e-mail address:
**[renan_ncs@msn.com](mailto:renan_ncs@msn.com)**
62 changes: 62 additions & 0 deletions dist/css/massimp.css
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;
}
1 change: 1 addition & 0 deletions dist/css/massimp.min.css

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

Loading

0 comments on commit 627b485

Please sign in to comment.