X-Git-Url: http://git.scottworley.com/picsort/blobdiff_plain/e18c13a6bea305ff31aec74c590c13551b4cc6a5..07f84670a9926d626ec4e21790e02fd56ff3dc8c:/picsorter.css diff --git a/picsorter.css b/picsorter.css new file mode 100644 index 0000000..b99fc9e --- /dev/null +++ b/picsorter.css @@ -0,0 +1,33 @@ +@-webkit-keyframes fadeOut { + from { opacity: 1; } + to { opacity: 0; } +} +@keyframes fadeOut { + from { opacity: 1; } + to { opacity: 0; } +} + +#message { + position: fixed; + font-size: 18pt; + margin: 2em; + border-radius: 10px; + padding: .3em; + color: white; + font-weight: bold; + font-family: sans-serif; + background-color: rgba(200,200,200,0.5); +} + +.fade { + opacity: 0; + animation-duration: 2s; + animation-name: fadeOut; + -webkit-animation-duration: 2s; + -webkit-animation-name: fadeOut; +} + +.fit_view { + max-width: 100%; + max-height: 100%; +}