-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
36 lines (32 loc) · 892 Bytes
/
styles.css
File metadata and controls
36 lines (32 loc) · 892 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
/* Apply styles to the body */
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
/* Center the content */
.container {
margin: 50px auto;
padding: 20px;
background: white;
border-radius: 10px;
width: 50%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Style the button */
button {
padding: 10px 20px;
font-size: 16px;
border: none;
background-color: #007BFF;
color: white;
cursor: pointer;
border-radius: 5px;
margin-top: 10px;
}
/* Hover effect for button */
button:hover {
background-color: #0056b3;
}