-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproblemSection.css
More file actions
47 lines (42 loc) · 1.07 KB
/
Copy pathproblemSection.css
File metadata and controls
47 lines (42 loc) · 1.07 KB
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
41
42
43
44
45
46
47
/* This box talks about problems students face */
.problemSection {
background: linear-gradient(135deg, #1e293b, #0f172a);
border-left: 4px solid #facc15;
border-right: 4px solid #facc15;
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;
}
.problemSection:hover {
transform: translateY(-5px);
box-shadow: 0 0 30px rgba(250, 204, 21, 0.25);
}
.problemSection h2 {
color: #facc15;
font-size: 36px;
text-align: left;
margin-bottom: 25px;
}
.problemSection ul {
list-style: none;
padding: 0;
line-height: 1.8;
font-size: 18px;
}
.problemSection li {
margin-bottom: 10px;
position: relative;
padding-left: 25px;
}
.problemSection li::before {
content: "•";
position: absolute;
left: 0;
color: #facc15;
font-size: 22px;
top: -2px;
}