-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrohit.css
More file actions
64 lines (57 loc) · 1.3 KB
/
Copy pathrohit.css
File metadata and controls
64 lines (57 loc) · 1.3 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* Custom skill grid styling */
.skills-grid {
list-style: none;
padding: 0;
margin: 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 1rem;
}
.skill-group {
margin-bottom: 1.5rem;
}
.skill-group-title {
margin-bottom: 0.85rem;
font-family: 'Saira Extra Condensed', serif;
font-size: 1.5rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #ffffff;
}
.skill-card {
display: flex;
align-items: center;
gap: 0.85rem;
padding: 1rem 1.1rem;
border-radius: 1rem;
border: 1px solid rgba(216, 36, 36, 0.22);
background: rgba(18, 18, 18, 0.86);
color: #ffffff;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.skill-card:hover {
transform: translateY(-4px);
border-color: #d82424;
background: rgba(28, 28, 28, 0.96);
box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}
.skill-card i {
font-size: 1.55rem;
width: 1.75rem;
text-align: center;
color: #f5f5f5;
flex: 0 0 auto;
}
.skill-card span {
font-family: 'Saira Extra Condensed', serif;
font-size: 1.2rem;
letter-spacing: 0.04em;
text-transform: uppercase;
line-height: 1.1;
}
@media (max-width: 575.98px) {
.skills-grid {
grid-template-columns: 1fr;
}
}