-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (66 loc) · 1.07 KB
/
Copy pathstyle.css
File metadata and controls
77 lines (66 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
75
76
77
body {
font-family: Arial, sans-serif;
width: 90%;
max-width: 1000px;
margin: 0 auto;
padding: 20px;
background-color: #f5f5f5;
line-height: 1.6;
}
h1 {
text-align: center;
color: #2563eb;
}
h2 {
color: #2563eb;
}
.profile-pic {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
display: block;
margin: 0 auto 20px auto;
}
section {
background: white;
padding: 20px;
margin-bottom: 20px;
border-radius: 10px;
}
.project {
border: 1px solid #ddd;
padding: 15px;
border-radius: 8px;
margin-bottom: 15px;
}
.project-image {
width: 220px;
height: auto;
border-radius: 8px;
display: block;
margin-top: 10px;
}
button {
background-color: #2563eb;
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #1d4ed8;
}
input {
padding: 8px;
margin: 5px;
}
a {
color: #2563eb;
text-decoration: none;
}
footer {
text-align: center;
margin-top: 20px;
}