NitakuShop/main/static/deps/css/about.css

48 lines
984 B
CSS
Raw Permalink Normal View History

2024-01-24 10:16:47 +00:00
/* Стили для страницы about */
body {
background-image: url("../images/walp.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
background-size: cover;
height: 100%;
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
}
.about-container {
background-color: rgba(107, 91, 149, 0.8);
color: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 5px 5px 25px 19px #380069;
margin: 50px auto;
max-width: 600px;
}
h2 {
color: #ffa07a;
}
p {
font-size: 16px;
line-height: 1.6;
}
a.telegram-button {
display: inline-block;
background-color: #4CAF50; /* Зеленый цвет */
color: #ffffff;
padding: 15px 30px;
text-decoration: none;
border-radius: 8px;
margin-top: 20px;
transition: background-color 0.3s;
font-size: 18px;
}
a.telegram-button:hover {
background-color: #45a049; /* Темно-зеленый цвет при наведении */
}