-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskills.css
57 lines (49 loc) · 939 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
46
47
48
49
50
51
52
53
54
55
56
57
.inner {
text-align: center;
padding: 50px 0;
}
.header h1 {
font-size: 36px;
margin-bottom: 30px;
font-family: Arial, sans-serif;
color: #333;
}
.contain {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.skill-box {
background-color: #f8f9fa;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease, color 0.3s ease;
}
.skill-box:hover {
background-color: #333;
color: #fff;
}
.skill-title {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 10px;
}
.skill-title img {
width: 50px;
height: auto;
margin-right: 10px;
}
.skill-title h3 {
font-size: 24px;
font-family: "Poppins", sans-serif;
font-weight: 600;
color: inherit;
}
.skill-box p {
font-size: 16px;
font-family: "Poppins", sans-serif;
font-weight: 600;
color: inherit;
}