-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
135 lines (113 loc) · 1.87 KB
/
Copy pathstyle.css
File metadata and controls
135 lines (113 loc) · 1.87 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/* h1 {
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
h2 {
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
.para {
color: rgb(48, 213, 86);
padding: 0 10px;
background-color: rgb(121, 132, 88);
} */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
/* Navigation Bar */
nav {
background-color: #333;
color: #fff;
padding: 20px;
}
.logo {
font-size: 24px;
font-weight: bold;
margin-right: 20px;
}
.nav-links {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
}
.nav-links li {
margin-right: 20px;
}
.nav-links li a {
color: #fff;
text-decoration: none;
}
/* Hero Section */
header {
background-color: #f2f2f2;
padding: 50px;
text-align: center;
}
/* About Me Section */
#about {
padding: 50px;
text-align: center;
}
/* Skills Section */
#skills {
padding: 50px;
background-color: #f2f2f2;
text-align: center;
}
.skills-list {
list-style-type: none;
padding: 0;
}
.skills-list li {
display: inline-block;
margin: 0 10px;
}
/* Projects Section */
#projects {
padding: 50px;
text-align: center;
}
.project {
margin-bottom: 20px;
}
.project a {
display: block;
margin-top: 10px;
}
/* Contact Section */
#contact {
padding: 50px;
text-align: center;
}
#contact-form {
display: flex;
flex-direction: column;
align-items: center;
}
#contact-form label {
margin-bottom: 10px;
}
#contact-form input,
#contact-form textarea {
width: 100%;
padding: 10px;
margin-bottom: 10px;
box-sizing: border-box;
}
#contact-form button {
background-color: #333;
color: #fff;
border: none;
padding: 10px 20px;
cursor: pointer;
}
/* Footer */
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}