Skip to content

Instantly share code, notes, and snippets.

@quattromani
Created March 27, 2015 16:52
Show Gist options
  • Save quattromani/d141815ae4a1673b9adf to your computer and use it in GitHub Desktop.
Save quattromani/d141815ae4a1673b9adf to your computer and use it in GitHub Desktop.
RNdGWd
<!-- Operational Message Component -->
<div class="operational-message">
<ul>
<li>We regularly negotiate new programming contracts with local broadcasters</li>
<li>Us regularly negotiate new programming contracts with local broadcasters</li>
<li>You regularly negotiate new programming contracts with local broadcasters</li>
<li>I regularly negotiate new programming contracts with local broadcasters</li>
</ul>
</div>
<!-- .Operational Message Component -->
/* ==========================================================================
Operational Message -- Version: 0.1.1 - Updated: 3/27/2015
========================================================================== */
$('.operational-message li').first().addClass('js-selected').show();
.operational-message {
max-width: 90%;
margin: 0 auto;
text-align: center;
ul {
margin-bottom: 0;
list-style-type: none;
}
li {
display: none;
}
}
@media (max-width: 768px) {
.operational-message{
display: block;
width: 100%;
padding: 0;
text-align: left;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment