-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
52 lines (45 loc) · 886 Bytes
/
styles.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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
margin: 0;
font-family: Arial, sans-serif;
}
.skills-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.skill-box {
width: 200px;
height: 150px;
padding: 20px;
color: white;
border-radius: 10px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.skill-box:hover {
transform: scale(1.1);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.html-skill {
background-color: #e34c26;
}
.css-skill {
background-color: #264de4;
}
.javascript-skill {
background-color: #f0db4f;
color: #323330; /* Dark text color for contrast */
}
.it-support-skill {
background-color: #6c757d;
}