summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorerdgeist <erdgeist@bauklotz.fritz.box>2016-08-07 08:47:28 +0200
committererdgeist <erdgeist@bauklotz.fritz.box>2016-08-07 08:47:28 +0200
commit45d5e6f1878c57709ab2064b46bb9eef5ef770ee (patch)
tree978345cb2292a104cc6459e22a546ebd8d4f24e7 /style.css
parent8864dcb9f42a1d9f7daeb6723f8c4e42290d4193 (diff)
making scroll smooth again
Diffstat (limited to 'style.css')
-rw-r--r--style.css20
1 files changed, 13 insertions, 7 deletions
diff --git a/style.css b/style.css
index fcaff61..7563b8f 100644
--- a/style.css
+++ b/style.css
@@ -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}