/* Orario Scuola, Copyright (C) 2025 EmmeV. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/. */ /* Navbar */ .navbar { background-color: #2c3e50; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; color: #fff; border-radius: 0 0 10px 10px; margin-bottom: 20px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); } .navbar a { color: #fff; text-decoration: none; margin-left: 15px; font-weight: bold; transition: color 0.2s; } .navbar a:hover { color: #f39c12; } .navbar .logo { font-size: 1.3em; font-weight: bold; } /* Responsive navbar */ @media (max-width: 768px) { .navbar { flex-direction: column; gap: 10px; padding: 15px; } .navbar a { margin-left: 0; margin: 0 10px; } .navbar .logo { font-size: 1.2em; margin-bottom: 5px; } } @media (max-width: 480px) { .navbar { padding: 12px; } .navbar .logo { font-size: 1.1em; } .navbar a { font-size: 0.9em; margin: 0 8px; } }