Skip to content

Instantly share code, notes, and snippets.

@nonamenix
Last active December 19, 2017 07:44
Show Gist options
  • Save nonamenix/97b8745c3102e453d1496233a7369813 to your computer and use it in GitHub Desktop.
Save nonamenix/97b8745c3102e453d1496233a7369813 to your computer and use it in GitHub Desktop.
Pulkovo Tablo Fullscreen Mode
#header,
#footer,
#parking,
#layout:after,
.header_before,
.note,
.home__banner,
.home__city,
.home__services,
.home__benefits,
.flights_tab_box_head,
.home::after,
.home::before,
.flights_tab_small, .flights_tab_small, .flights_tab_box_day_triggers
{
display: none !important;
}
.flights_tab_triggers,
.flights_tab_box_head_col_search {
visibility: hidden;
}
.flights_tab_box {
width: 100%;
}
.flights_tabs:before,
.home,
#layout
{
background: none
}
body {
background: #0d2e47;
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top, #0d2e47 0%, #215c8b 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0d2e47), color-stop(100%, #215c8b));
background: -webkit-linear-gradient(top, #0d2e47 0%, #215c8b 100%);
background: -o-linear-gradient(top, #0d2e47 0%, #215c8b 100%);
background: -ms-linear-gradient(top, #0d2e47 0%, #215c8b 100%);
background: linear-gradient(to bottom, #0d2e47 0%, #215c8b 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0d2e47', endColorstr='#215c8b',GradientType=0 );
}
.layout_wrap {
max-width: none;
}
.layout_wrap_inner {
max-width: 960px;
}
.flights_tab_box .flights_tabs {
margin: 50px 10px;
}
function choose(choices) {
var index = Math.floor(Math.random() * choices.length);
return choices[index];
}
var intervalID = setInterval(function(){Env.lang = choose(['en', 'cn', 'ru'])}, 60000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment