-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (37 loc) · 860 Bytes
/
Copy pathstyle.css
File metadata and controls
44 lines (37 loc) · 860 Bytes
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
/* style.css content */
body {
background-color: darkgrey;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: space-between;
}
#title {
font-size: 48px; /* Large text for the title */
font-weight: bold; /* Bold font for the title */
color: white;
}
#about-me {
width: 70%;
padding: 20px;
color: white; /* Light text color for readability on dark background */
}
#button-container {
width: 30%;
padding: 20px;
text-align: right; /* Aligns buttons to the right */
}
button {
background-color: pink;
color: white;
padding: 10px 20px;
margin: 5px;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #ff69b4; /* Slightly lighter pink on hover */
}
/* If needed, add more specific styles here */