-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
34 lines (29 loc) · 788 Bytes
/
style.css
File metadata and controls
34 lines (29 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
.navbar-nav .nav-link:hover {
color: #5348f5; /* Цвет текста при наведении */
}
.btn-image {
display: inline-block;
overflow: hidden;
transition: transform 0.3s ease;
}
.btn-image:hover {
transform: scale(1.1);
}
.btn-image img {
display: block;
max-width: 100%;
height: auto;
}
.gradient-bg {
background: linear-gradient(to left, #09090a, #273038);
}
.contact-info {
background: linear-gradient(to right,#000000, #525252); /* Градиентный фон */
padding: 20px;
border-radius: 10px;
}
.contact-info p::before {
content: "•"; /* Добавление символа перед текстом */
margin-right: 10px;
color: #6973ff; /* Цвет символа */
}