2015-05-27 19:50:25 +02:00
|
|
|
body {
|
|
|
|
font-family: 'Roboto', sans-serif;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab_content {
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
visibility: hidden;
|
2015-06-02 21:39:56 +02:00
|
|
|
max-width: 750px;
|
2015-06-04 18:00:23 +02:00
|
|
|
/*margin: 0 auto;*/
|
2015-05-27 19:50:25 +02:00
|
|
|
margin-bottom: 140px;
|
|
|
|
padding: 10px;
|
|
|
|
position: absolute;
|
2015-06-04 18:00:23 +02:00
|
|
|
/*left: 50%;
|
|
|
|
margin-left: -380px;*/
|
2015-05-27 19:50:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tab_content.current {
|
|
|
|
/*display: block;*/
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule .tabs {
|
|
|
|
list-style: none;
|
|
|
|
padding-left: 0px;
|
|
|
|
margin: 0px;
|
2015-06-04 22:09:19 +02:00
|
|
|
background: rgba(170, 170, 170, 0.9);
|
2015-05-27 19:50:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.schedule .tabs li {
|
|
|
|
width: 105px;
|
|
|
|
height: 80px;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 15px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule .tabs li span {
|
|
|
|
font-size: 30px;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule .tabs li.active {
|
2015-06-04 22:09:19 +02:00
|
|
|
background: rgba(150, 150, 150, 0.9);
|
2015-05-27 19:50:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.schedule .tabs li.active:hover {
|
2015-06-04 22:09:19 +02:00
|
|
|
background: rgba(170, 170, 170, 0.9);
|
|
|
|
background: #aaa
|
2015-05-27 19:50:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.schedule .tabs li:hover {
|
2015-06-04 22:09:19 +02:00
|
|
|
background: rgba(160, 160, 160, 0.7);
|
2015-05-27 19:50:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.schedule_content {
|
2015-06-04 22:09:19 +02:00
|
|
|
background: rgba(53, 53, 53, 0.9);
|
2015-05-27 19:50:25 +02:00
|
|
|
max-height: 0px;
|
|
|
|
transition: max-height 2s ease;
|
2015-06-02 21:39:56 +02:00
|
|
|
|
2015-06-03 14:29:03 +02:00
|
|
|
overflow-y: auto;
|
2015-05-27 19:50:25 +02:00
|
|
|
/*transition-delay: 1s;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule.current .schedule_content {
|
2015-06-02 21:39:56 +02:00
|
|
|
max-height: 300px;
|
2015-05-27 19:50:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.schedule_content table {
|
|
|
|
opacity: 0;
|
|
|
|
/*transition: all 1s ease;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule.current .schedule_content table {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transition-delay: 0.6s;
|
|
|
|
transition-delay: 0.6s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule_item {
|
|
|
|
display: none;
|
|
|
|
font-size: 17px;
|
|
|
|
text-align: left;
|
|
|
|
text-transform: uppercase;
|
2015-06-04 22:09:19 +02:00
|
|
|
padding: 10px 30px;
|
2015-05-27 19:50:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.schedule_item.active {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule_item .time_grid {
|
|
|
|
font-weight: 300;
|
|
|
|
color: #AAAAAA;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule_item .name_grid {
|
2015-06-04 22:09:19 +02:00
|
|
|
padding-left: 10px;
|
2015-05-27 19:50:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.schedule_item h4 {
|
|
|
|
margin: 10px 0px;
|
|
|
|
font-weight: 400;
|
2015-06-02 18:59:59 +02:00
|
|
|
}
|
|
|
|
|
2015-06-04 22:09:19 +02:00
|
|
|
.weekly-schedule-widget-footer {
|
|
|
|
border-top: 1px solid #aaaaaa;
|
|
|
|
text-align: right;
|
|
|
|
padding: 4px 16px;
|
|
|
|
background: rgba(53, 53, 53, 0.9);
|
|
|
|
}
|
|
|
|
|
|
|
|
.weekly-schedule-widget-footer a {
|
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.weekly-schedule-widget-footer span {
|
|
|
|
color: #ff5d1a;
|
|
|
|
}
|
|
|
|
|
2015-06-02 18:59:59 +02:00
|
|
|
@media (max-width: 730px) {
|
|
|
|
.tab_content {
|
|
|
|
margin-top: 0px;
|
|
|
|
width: auto;
|
|
|
|
max-width: 100%;
|
|
|
|
margin-left: auto;
|
|
|
|
left: 10px;
|
|
|
|
right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule .tabs li {
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-04 22:09:19 +02:00
|
|
|
@media (max-width: 520px) {
|
|
|
|
|
|
|
|
.schedule_item {
|
|
|
|
padding: 0px 10px;
|
|
|
|
}
|
|
|
|
.schedule_item .time_grid, .schedule_item .name_grid {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|