Tighten up Radio Page CSS transitions
This commit is contained in:
parent
9ddb33f2cd
commit
6a668f79af
|
@ -64,6 +64,7 @@ body {
|
||||||
|
|
||||||
.bottom_bar .button {
|
.bottom_bar .button {
|
||||||
width: 50px;
|
width: 50px;
|
||||||
|
min-width: 50px;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin: 35px 40px;
|
margin: 35px 40px;
|
||||||
|
|
|
@ -80,22 +80,20 @@ span.login-img {
|
||||||
transition-delay: 2s;
|
transition-delay: 2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
#schedule_iframe.schedule, .about_us, .login, .podcast {
|
.tab_content {
|
||||||
/* -webkit-transition-delay: 1s;
|
/* -webkit-transition-delay: 1s;
|
||||||
transition-delay: 1s;*/
|
transition-delay: 1s;*/
|
||||||
transition: all 0.4s ease;
|
transition: opacity 0.4s ease 0.4s;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.about_us.current, .login.current, .schedule.current, .podcast.current {
|
.current {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
-webkit-transition-delay: 0.4s;
|
-webkit-transition: opacity 0.4s ease 0.0s;
|
||||||
transition-delay: 0.4s;
|
transition: opacity 0.4s ease 0.0s;
|
||||||
}
|
}
|
||||||
|
|
||||||
#schedule_iframe.schedule.current {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about_us h1 {
|
.about_us h1 {
|
||||||
font-size: 80px; /** Fallback if vw is not suppoted */
|
font-size: 80px; /** Fallback if vw is not suppoted */
|
||||||
|
@ -164,9 +162,6 @@ span.login-img {
|
||||||
width:auto;
|
width:auto;
|
||||||
border:0;
|
border:0;
|
||||||
}
|
}
|
||||||
#rss-title, #rss-subscribe {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue