govorov/frontend/src/index.css

32 lines
728 B
CSS
Raw Normal View History

2025-04-07 09:02:54 +02:00
/* Сброс базовых стилей */
body, html, #root {
margin: 0;
padding: 0;
height: 100%;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: #f4f7f6; /* Светлый фон для всей страницы */
color: #333; /* Основной цвет текста */
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
button {
cursor: pointer;
}