-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (97 loc) · 1.73 KB
/
Copy pathstyle.css
File metadata and controls
107 lines (97 loc) · 1.73 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
/* General Page Style */
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
color: #333;
margin: 0;
padding: 0;
}
/* Header Style */
h1 {
background-color: #1f2937;
color: white;
padding: 20px;
text-align: center;
margin: 0;
}
/* Paragraph Styling */
p {
text-align: center;
font-size: 18px;
padding: 10px;
}
/* General Page Style */
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
color: #333;
margin: 0;
padding: 0;
}
/* Header Style */
header {
background-color: #1f2937;
color: white;
padding: 20px;
text-align: center;
}
/* Section Container Style */
section {
background-color: white;
margin: 20px auto;
padding: 20px;
width: 90%;
max-width: 800px;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* Section Titles */
h2 {
text-align: center;
color: #1f2937;
}
/* List Style */
ul {
list-style-type: square;
padding-left: 30px;
font-size: 18px;
}
/* Interests List Style (optional improvement) */
#interests ul li {
margin-bottom: 10px;
line-height: 1.6;
}
/* Project Links */
#projects a {
color: #2563eb;
font-weight: bold;
text-decoration: none;
}
#projects a:hover {
text-decoration: underline;
}
/* Contact Form Styling */
form {
max-width: 600px;
margin: 0 auto;
}
input, textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 16px;
}
button {
background-color: #2563eb;
color: white;
padding: 12px 20px;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #1d4ed8;
}