-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles-3.css
More file actions
48 lines (40 loc) · 734 Bytes
/
styles-3.css
File metadata and controls
48 lines (40 loc) · 734 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
47
48
/* Set the background color */
body {
background-color: #f2f2f2;
}
/* Center the content */
.container {
width: 80%;
margin: 0 auto;
text-align: center;
}
/* Set the style for the table */
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: left;
padding: 8px;
}
th {
background-color: #1e90ff;
color: white;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
/* Style the header */
header {
background-color: #4CAF50;
color: white;
padding: 10px;
text-align: center;
}
/* Style the footer */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px;
}