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-06-05 20:35:27 +02:00
|
|
|
overflow-x: hidden;
|
|
|
|
text-overflow: ellipsis;
|
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
|
|
|
}
|
|
|
|
|
2015-06-09 16:30:47 +02:00
|
|
|
/*.schedule_content table {
|
2015-05-27 19:50:25 +02:00
|
|
|
opacity: 0;
|
2015-06-09 16:30:47 +02:00
|
|
|
*//*transition: all 1s ease;*//*
|
2015-05-27 19:50:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.schedule.current .schedule_content table {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transition-delay: 0.6s;
|
|
|
|
transition-delay: 0.6s;
|
2015-06-09 16:30:47 +02:00
|
|
|
}*/
|
2015-05-27 19:50:25 +02:00
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2015-06-09 16:30:47 +02:00
|
|
|
.schedule_item .row {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
2015-05-27 19:50:25 +02:00
|
|
|
}
|
|
|
|
|
2015-06-09 16:30:47 +02:00
|
|
|
.schedule_item div.time_grid {
|
2015-06-05 20:35:27 +02:00
|
|
|
/*padding-right: 10px;*/
|
2015-06-09 16:30:47 +02:00
|
|
|
width: 20%;
|
|
|
|
font-weight: 300;
|
|
|
|
color: #AAAAAA;
|
|
|
|
display: inline-block;
|
2015-06-05 20:35:27 +02:00
|
|
|
}
|
|
|
|
|
2015-06-09 16:30:47 +02:00
|
|
|
.schedule_item div.name_grid {
|
2015-06-05 20:35:27 +02:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2015-06-04 22:09:19 +02:00
|
|
|
padding-left: 10px;
|
2015-06-09 16:30:47 +02:00
|
|
|
width: 77%;
|
|
|
|
display:inline-block;
|
|
|
|
vertical-align: middle;
|
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-09 16:30:47 +02:00
|
|
|
@media (max-width: 630px) {
|
|
|
|
.schedule_item div.time_grid {
|
|
|
|
width: 25%;
|
|
|
|
}
|
2015-06-04 22:09:19 +02:00
|
|
|
|
2015-06-09 16:30:47 +02:00
|
|
|
.schedule_item div.name_grid {
|
|
|
|
width: 72%;
|
2015-06-04 22:09:19 +02:00
|
|
|
}
|
2015-06-09 16:30:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 530px) {
|
|
|
|
.schedule_item {
|
|
|
|
padding: 10px 20px;
|
2015-06-04 22:09:19 +02:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
2015-06-09 16:30:47 +02:00
|
|
|
|
|
|
|
.schedule_item div.time_grid {
|
|
|
|
width: 30%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule_item div.name_grid {
|
|
|
|
width: 67%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
.schedule_item div.time_grid {
|
|
|
|
width: 35%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule_item div.name_grid {
|
|
|
|
width: 62%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 400px) {
|
|
|
|
.schedule_item div.time_grid {
|
|
|
|
width: 40%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule_item div.name_grid {
|
|
|
|
width: 50%;
|
|
|
|
}
|
2015-06-04 22:09:19 +02:00
|
|
|
}
|
|
|
|
|