-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPortfolio.css
More file actions
74 lines (63 loc) · 1.07 KB
/
Portfolio.css
File metadata and controls
74 lines (63 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background: #0f172a;
color: #e2e8f0;
line-height: 1.6;
}
section {
max-width: 900px;
margin: auto;
padding: 60px 20px;
}
.hero {
text-align: center;
padding: 100px 20px;
}
.hero h1 {
font-size: 48px;
margin-bottom: 10px;
}
.hero h2 {
font-weight: 400;
color: #38bdf8;
}
.hero p {
margin: 20px 0;
font-size: 18px;
}
.buttons a {
margin: 0 10px;
padding: 10px 20px;
border: 1px solid #38bdf8;
color: #38bdf8;
text-decoration: none;
border-radius: 5px;
transition: 0.3s;
}
.buttons a:hover {
background: #38bdf8;
color: #0f172a;
}
h2 {
border-bottom: 1px solid #334155;
padding-bottom: 10px;
margin-bottom: 20px;
}
.card {
background: #1e293b;
padding: 20px;
border-radius: 10px;
margin-bottom: 20px;
transition: 0.3s;
}
.card:hover {
transform: translateY(-5px);
}
.skills span {
display: inline-block;
background: #1e293b;
margin: 5px;
padding: 8px 12px;
border-radius: 5px;
}