-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
53 lines (47 loc) · 974 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
40
41
42
43
44
45
46
47
48
49
50
51
52
/* Reset some default spacing */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f5f5f5;
}
/* Style the header section */
header {
background-color: #4CAF50;
color: white;
padding: 20px;
text-align: center;
}
/* Style the paragraph in the section */
section p {
padding: 20px;
font-size: 18px;
color: #333;
}
/* Style for the button with a class "fancy-button" */
.fancy-button {
display: block;
width: 200px;
margin: 20px auto;
padding: 10px;
background-color: #ff9800;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
/* Change the button background when hovered */
.fancy-button:hover {
background-color: #e68900;
}
/* Style the footer */
footer {
background-color: #ddd;
color: #555;
text-align: center;
padding: 10px;
/* Fix the footer at the bottom */
position: fixed;
bottom: 0;
width: 100%;
}