CSS
7
Вклад в тег
<link rel="stylesheet" media="screen and (min-width: 1000px)" href="=/style.css" /> все что больше 1000рх
<link rel="stylesheet" media="screen and (max-width: 1000px)" href="=/style.css" /> все что меньше 1000рх
<link rel="stylesheet" media="screen and (min-width: 600px) and (max-width: 900px)" href="/style.css" /> в промежутке от 600рх до 900рх
.site-branding {
opacity: 0;
transition: .5s;
}
.site-branding.active {
opacity: 1;
}
.site-branding a{
height: 0;
overflow: hidden;
}
.site-branding.active a {
height: auto;
}