CS50_Labs/Lab9/finance/static/styles.css

48 lines
652 B
CSS
Raw Normal View History

2024-08-09 17:43:54 +00:00
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%;
}