diff options
| -rw-r--r-- | style.css | 20 |
1 files changed, 13 insertions, 7 deletions
| @@ -67,7 +67,6 @@ h2 { | |||
| 67 | min-width: 480px; | 67 | min-width: 480px; |
| 68 | width: 50%; | 68 | width: 50%; |
| 69 | margin: 0.5em auto 0 auto; | 69 | margin: 0.5em auto 0 auto; |
| 70 | transition: visibility 0s linear 0.5s, display 0s linear 0.5s; | ||
| 71 | } | 70 | } |
| 72 | 71 | ||
| 73 | .wrapper.step1 .block-header { | 72 | .wrapper.step1 .block-header { |
| @@ -82,18 +81,24 @@ h2 { | |||
| 82 | .juice { | 81 | .juice { |
| 83 | font-size: 14pt; | 82 | font-size: 14pt; |
| 84 | font-weight: 300; | 83 | font-weight: 300; |
| 85 | visibility: hidden; | 84 | |
| 86 | display: none; | 85 | overflow: hidden; |
| 86 | max-height: 0px; | ||
| 87 | transition: max-height 0.25s ease-in; | ||
| 87 | } | 88 | } |
| 88 | 89 | ||
| 89 | .hidden, #unsicher { | 90 | .hidden, |
| 91 | #unsicher { | ||
| 90 | visibility: hidden; | 92 | visibility: hidden; |
| 91 | display: none; | 93 | transition: visibility 0.25s ease-in; |
| 92 | } | 94 | } |
| 93 | 95 | ||
| 96 | .hidden, | ||
| 97 | #unsicher, | ||
| 94 | .wrapper.stepcancel h2 { | 98 | .wrapper.stepcancel h2 { |
| 95 | visibility: hidden; | 99 | overflow: hidden; |
| 96 | display: none; | 100 | max-height: 0px; |
| 101 | transition: max-height 0.25s ease-in; | ||
| 97 | } | 102 | } |
| 98 | 103 | ||
| 99 | .block-step1 { | 104 | .block-step1 { |
| @@ -291,4 +296,5 @@ input[type="text"] { | |||
| 291 | { | 296 | { |
| 292 | display: block !important; | 297 | display: block !important; |
| 293 | visibility: visible !important; | 298 | visibility: visible !important; |
| 299 | max-height: 9999px; | ||
| 294 | } | 300 | } |
