-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskills.css
45 lines (37 loc) · 955 Bytes
/
skills.css
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
.skills-section {
background-color: #f5f5f5;
padding: 40px;
color: #333;
}
.skills-title {
text-align: center;
font-size: 28px;
margin-bottom: 30px;
color: #222;
}
.skill-category h3 {
color: #ff4500; /* Orangered color for headings */
margin-bottom: 10px;
}
.skill-category ul {
list-style: none;
padding: 0;
}
.skill-category ul li {
background-color: #fff;
margin-bottom: 5px;
padding: 10px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
border-left: 5px solid #ff4500; /* Orangered accent */
transition: all 0.5s ease-in-out;
}
.skill-category ul li:hover {
background-color: orangered;
border-left: 5px solid black; /* Orangered accent */
transform: translateX(10px);
}
.skills-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}