Files
elysium/frontend/css/main.css
2025-01-03 21:26:43 +03:00

48 lines
847 B
CSS
Raw Permalink 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;
}