48 lines
652 B
CSS
48 lines
652 B
CSS
nav .navbar-brand
|
|
{
|
|
/* size for brand */
|
|
font-size: xx-large;
|
|
}
|
|
|
|
/* Colors for brand */
|
|
nav .navbar-brand .blue
|
|
{
|
|
color: #537fbe;
|
|
}
|
|
nav .navbar-brand .red
|
|
{
|
|
color: #ea433b;
|
|
}
|
|
nav .navbar-brand .yellow
|
|
{
|
|
color: #f5b82e;
|
|
}
|
|
nav .navbar-brand .green
|
|
{
|
|
color: #2e944b;
|
|
}
|
|
|
|
main .form-control
|
|
{
|
|
/* Center form controls */
|
|
display: inline-block;
|
|
|
|
/* Override Bootstrap's 100% width for form controls */
|
|
width: auto;
|
|
}
|
|
|
|
main
|
|
{
|
|
/* Scroll horizontally as needed */
|
|
overflow-x: auto;
|
|
|
|
/* Center contents */
|
|
text-align: center;
|
|
}
|
|
|
|
main img
|
|
{
|
|
/* Constrain images on small screens */
|
|
max-width: 100%;
|
|
}
|