This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/css/main.css
2025-01-04 14:04:53 +03:00

48 lines
847 B
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* Сброс стандартных стилей */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Основной фон страницы */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
}
/* Заголовок страницы */
header {
background-color: #007bff;
color: white;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
}
/* Контейнер для всех элементов */
.container {
display: flex;
justify-content: center;
margin-top: 20px;
}
/* Стиль для кнопок */
button {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}