/
aprogrammer
/
react-router-basic
Обзор
Документация
Войти
/
aprogrammer
/
react-router-basic
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/App.css
45 строк
658 B
aprogrammer
Added demo project
14 янв 2025, 01:21
14 янв 2025, 01:21
fb3ee45
Код
Авторство
О чём код?
/* Reset default margins and paddings */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: Arial, sans-serif; line-height: 1.6; } html { scroll-behavior: smooth; /* Enables smooth scrolling */ } /* Fixed navbar */ .navbar { position: fixed; top: 0; width: 100%; background-color: #333; padding: 1rem; z-index: 1000; /* Ensure navbar stays above content */ } .navbar-links { list-style: none; display: flex; justify-content: center; } .navbar-links li { margin: 0 20px; } .navbar-links a { color: white; text-decoration: none; font-size: 1.2rem; } .navbar-links a:hover { color: #ff6347; }