-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
133 lines (113 loc) · 2.08 KB
/
style.css
File metadata and controls
133 lines (113 loc) · 2.08 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
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
/* General Styling */
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background: #f5f5f5;
color: #333;
}
header {
text-align: center;
padding: 60px 20px;
background: #4a90e2;
color: white;
}
header h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
header p {
font-size: 1.2rem;
}
/* Sections */
section {
padding: 40px 20px;
max-width: 800px;
margin: auto;
}
h2 {
font-size: 1.8rem;
color: #4a90e2;
margin-bottom: 10px;
}
/* Skills List */
ul {
list-style-type: none;
padding: 0;
}
li {
background: white;
padding: 12px;
margin: 8px 0;
border-radius: 8px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
/* Contact Section */
#contact p {
font-size: 1.1rem;
font-weight: 600;
color: #555;
}
/* Navigation Bar */
nav {
background: white;
box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}
nav ul {
display: flex;
justify-content: center;
padding: 10px;
margin: 0;
}
nav ul li {
margin: 0 20px;
list-style: none;
}
nav ul li a {
text-decoration: none;
color: #4a90e2;
font-weight: 600;
font-size: 1rem;
transition: 0.3s;
}
nav ul li a:hover {
color: #0d6efd;
}
/* Project Card Styling */
.project-card {
background: white;
padding: 20px;
margin: 15px 0;
border-radius: 12px;
box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
}
.project-card h3 {
margin: 0 0 10px;
color: #4a90e2;
}
/* Social Profiles Section */
#social ul {
list-style: none;
padding: 0;
}
#social ul li {
margin: 10px 0;
}
#social ul li a {
text-decoration: none;
color: #4a90e2;
font-size: 1.1rem;
font-weight: 600;
}
#social ul li a:hover {
color: #0d6efd;
}
#contact p {
font-size: 1.1rem;
margin: 8px 0;
}