diff options
| author | Julie Lala <jules@okfoc.us> | 2014-10-14 20:00:59 -0400 |
|---|---|---|
| committer | Julie Lala <jules@okfoc.us> | 2014-10-14 20:33:29 -0400 |
| commit | 1b152e66ad8d7aa1c5511152991e648308f8918b (patch) | |
| tree | fafbf1de89a147adf8f79b1f866c023a63a09482 /public/assets/stylesheets/app.css | |
| parent | 527a65ca570891ff473dbdac36d41b1be60196f1 (diff) | |
fixed-position close box
fixed-position close box &c
Diffstat (limited to 'public/assets/stylesheets/app.css')
| -rwxr-xr-x | public/assets/stylesheets/app.css | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index eec671a..038b0c4 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -2169,7 +2169,21 @@ form li textarea { border: 1px solid black; box-shadow: -3px 4px black; line-height: 75px; - + text-align: center; +} +#fixed_close { + display: none; + transform: translateY(-200px) translateZ(0); +} +#fixed_close.active { + animation: visibility 0.2s; + animation-fill-mode: forwards; + display: block; +} +@keyframes visibility { + 100% { + transform: translateY(0px) translateZ(0); + } } |
