-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstyles.css
More file actions
46 lines (42 loc) · 915 Bytes
/
styles.css
File metadata and controls
46 lines (42 loc) · 915 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
45
46
/* styles.css */
body {
background-image: url('cat.png');
background-repeat: repeat;
background-size: auto;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
/* Additional styling */
header {
background-color: rgba(0, 0, 0, 0.7);
color: white;
text-align: center;
padding: 20px;
}
main {
text-align: center;
padding: 50px;
}
footer {
background-color: rgba(0, 0, 0, 0.7);
color: white;
text-align: center;
padding: 10px;
}
.big-button {
display: inline-block;
padding: 15px 30px;
background-color: #007bff; /* Blue color */
color: white;
text-decoration: none;
font-size: 20px;
font-weight: bold;
border-radius: 8px;
border: none;
text-align: center;
cursor: pointer;
}
.big-button:hover {
background-color: #0056b3; /* Darker blue on hover */
}