-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
61 lines (53 loc) · 939 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
53
54
55
56
57
58
59
60
61
/* Basic styles for the body */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
/* Header styles */
header {
background-color: #333;
color: white;
padding: 1rem;
text-align: center;
}
/* Main content styles */
main {
padding: 2rem;
}
/* Basic button styles */
button {
background-color: #007BFF;
color: white;
border: none;
padding: 0.5rem 1rem;
cursor: pointer;
border-radius: 4px;
}
button:hover {
background-color: #0056b3;
}
/* Footer styles */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1rem;
position: fixed;
bottom: 0;
width: 100%;
}
/* Center images and remove list-style */
ul {
list-style-type: none;
/* Remove the dot before the images */
padding: 0;
}
ul li {
text-align: center;
}
ul li img {
display: block;
margin: 0 auto;
}