diff options
Diffstat (limited to 'static/main.css')
-rw-r--r-- | static/main.css | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/static/main.css b/static/main.css index 7c13cae..85292fb 100644 --- a/static/main.css +++ b/static/main.css @@ -58,7 +58,8 @@ table { border-spacing: 0; } .gallery { - display: flex; } + display: flex; + flex-wrap: wrap; } .gallery-element { background: #e6ebf6; @@ -66,9 +67,9 @@ table { display: block; min-width: 200px; padding: 10px; - width: 33%; + width: 32%; min-height: 200px; - margin: 5px; + margin: 0.8%; border: gray 1px solid; } .gallery-element:hover { @@ -83,6 +84,22 @@ table { -o-transition: all 100ms; transition: all 100ms; } +.popup { + animation-name: popup; + animation-duration: 6s; + animation-iteration-count: 1; + position: fixed; + bottom: 10px; + text-align: center; + animation-fill-mode: forwards; } + +@keyframes popup { + 0% { + opacity: 100%; } + 33% { + opacity: 100%; } + 100% { + opacity: 0; } } * { font-family: 'Montserrat', sans-serif !important; } |