-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
28 lines (25 loc) · 797 Bytes
/
style.css
File metadata and controls
28 lines (25 loc) · 797 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
/* General body styles */
body {
font-family: Arial, sans-serif; /* Set font family */
background-color: #f4f4f4; /* Light gray background */
margin: 0; /* Remove default margin */
padding: 20px; /* Add padding */
}
/* Styles for the main heading */
h1 {
color: #333; /* Dark gray color for the heading */
}
/* Styles for buttons */
button {
margin-top: 10px; /* Space above buttons */
padding: 10px 15px; /* Padding inside buttons */
background-color: #007BFF; /* Blue background */
color: white; /* White text color */
border: none; /* Remove border */
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Pointer cursor on hover */
}
/* Button hover effect */
button:hover {
background-color: #0056b3; /* Darker blue on hover */
}