-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
103 lines (88 loc) · 1.54 KB
/
Copy pathstyles.css
File metadata and controls
103 lines (88 loc) · 1.54 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #f5f5f5;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
padding: 20px;
width: 100%;
max-width: 400px;
}
.profile-card {
background: white;
border-radius: 12px;
padding: 32px;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.profile-image {
margin-bottom: 24px;
}
.avatar {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.name {
font-size: 24px;
font-weight: 500;
margin-bottom: 8px;
color: #333;
}
.title {
font-size: 16px;
color: #666;
margin-bottom: 24px;
}
.buttons {
display: flex;
flex-direction: column;
gap: 12px;
}
.btn {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 12px 24px;
border-radius: 6px;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
}
.btn-cv {
background-color: #2196f3;
color: white;
}
.btn-linkedin {
background-color: #0077b5;
color: white;
}
.btn-linkedin .material-icons {
max-width: 20px;
}
.btn-github {
background-color: #333;
color: white;
}
.btn-email {
background-color: #4caf50;
color: white;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.material-icons {
font-size: 20px;
}