-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (74 loc) · 1.17 KB
/
Copy pathstyle.css
File metadata and controls
85 lines (74 loc) · 1.17 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
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: black;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
/* Card box */
.card {
background: white;
text-align: center;
padding: 30px;
border-radius: 10px;
width: 350px;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
/* Profile image */
.profile-img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin-top: -80px;
border: 5px solid white;
}
/* Headings */
h1 {
margin: 15px 0 5px;
font-size: 22px;
color: black;
}
h2 {
font-size: 16px;
color: gray;
margin-bottom: 15px;
}
p {
font-size: 14px;
color: #333;
margin-bottom: 15px;
}
/* Social Icons */
.social-icons {
margin: 15px 0;
}
.social-icons a {
margin: 0 10px;
font-size: 24px;
color: #333;
text-decoration: none;
}
.social-icons a:hover {
color: #0077b5;
}
/* Contact button */
.contact-btn {
display: inline-block;
margin-top: 10px;
padding: 10px 20px;
background-color: black;
color: white;
text-decoration: none;
border-radius: 5px;
}
.contact-btn:hover {
background-color: #333;
}