/* * Custom CSS styles for the SUS-BX5 theme * * This file contains style definitions specific to the SUS-BX5 application, * including global styles and component-specific styles. */ /* Global styles */ * { margin: 0; padding: 0; } body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; } /* Base styles */ h1, h2, h3, h4, h5, h6 { margin-bottom: 0.5rem; } p { margin-top: 0; } /* Component-specific styles */ #app { background-color: #f9f9f9; } .navbar { background-color: #2e2e2e; color: #fff; } .navbar .nav-item { margin-right: 20px; } .btn-primary { background-color: #007bff; border-color: #007bff; } .btn-primary:hover { background-color: #0056b3; border-color: #0056b3; } /* Additional styles */ .container { max-width: 1200px; margin-left: auto; margin-right: auto; } .footer { text-align: center; padding: 20px; background-color: #2e2e2e; color: #ccc; font-size: 14px; } /* Responsive styles */ @media (max-width: 600px) { .container { max-width: 100%; } }