-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
39 lines (39 loc) · 887 Bytes
/
styles.css
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #D3F1DF; /* Light, neutral tone for contrast */
}
header {
background-color: #7E1891; /* Vibrant sky blue */
color: #ffffff; /* White text for readability */
padding: 10px;
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 10px;
}
a {
text-decoration: none;
color: #ff4500; /* Bright orange-red for standout links */
}
a:hover {
color: #ff6347; /* Tomato red for hover effect */
}
footer {
background-color: #ff69b4; /* Vibrant hot pink */
color: #ffffff; /* White text for better contrast */
text-align: center;
padding: 10px 0;
}
.profile-pic {
width: 150px;
height: 150px;
border-radius: 50%;
border: 5px solid #D91656; /* Border matches the header color */
}