-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolutionSection.css
More file actions
40 lines (36 loc) · 964 Bytes
/
Copy pathsolutionSection.css
File metadata and controls
40 lines (36 loc) · 964 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
35
36
37
38
39
40
/* This box shows how we solve the problems */
.solutionSection {
background: linear-gradient(135deg, #1e293b, #0f172a);
border-left: 4px solid #22c55e;
border-right: 4px solid #22c55e;
border-radius: 12px;
padding: 40px 50px;
margin: 60px auto;
width: 75%;
color: #e2e8f0;
box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.solutionSection:hover {
transform: translateY(-5px);
box-shadow: 0 0 30px rgba(34, 197, 94, 0.25);
}
.solutionSection ul {
list-style: none;
padding: 0;
line-height: 1.8;
font-size: 18px;
}
.solutionSection li {
margin-bottom: 10px;
position: relative;
padding-left: 25px;
}
.solutionSection li::before {
content: "•";
position: absolute;
left: 0;
color: #22c55e;
font-size: 22px;
top: -2px;
}