48 lines
847 B
CSS
48 lines
847 B
CSS
/* Сброс стандартных стилей */
|
||
* {
|
||
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;
|
||
}
|