Tighten up Radio Page CSS transitions

This commit is contained in:
Albert Santoni 2015-11-17 11:42:08 -05:00
parent 9ddb33f2cd
commit 6a668f79af
2 changed files with 7 additions and 11 deletions

View File

@ -64,6 +64,7 @@ body {
.bottom_bar .button {
width: 50px;
min-width: 50px;
height: 50px;
display: inline-block;
margin: 35px 40px;

View File

@ -80,22 +80,20 @@ span.login-img {
transition-delay: 2s;
}
#schedule_iframe.schedule, .about_us, .login, .podcast {
.tab_content {
/* -webkit-transition-delay: 1s;
transition-delay: 1s;*/
transition: all 0.4s ease;
transition: opacity 0.4s ease 0.4s;
opacity: 0;
}
.about_us.current, .login.current, .schedule.current, .podcast.current {
.current {
opacity: 1;
-webkit-transition-delay: 0.4s;
transition-delay: 0.4s;
-webkit-transition: opacity 0.4s ease 0.0s;
transition: opacity 0.4s ease 0.0s;
}
#schedule_iframe.schedule.current {
opacity: 1;
}
.about_us h1 {
font-size: 80px; /** Fallback if vw is not suppoted */
@ -164,9 +162,6 @@ span.login-img {
width:auto;
border:0;
}
#rss-title, #rss-subscribe {
text-align: center;
}
}