32 lines
728 B
CSS
32 lines
728 B
CSS
|
/* Сброс базовых стилей */
|
|||
|
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;
|
|||
|
}
|