-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbody {.css
More file actions
46 lines (40 loc) · 695 Bytes
/
Copy pathbody {.css
File metadata and controls
46 lines (40 loc) · 695 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
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f4f6f9;
text-align: center;
}
header {
background-color: #1f3c88;
color: white;
padding: 30px 20px;
}
.cards {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
}
.card {
background: white;
width: 250px;
margin: 15px;
padding: 20px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.card h2 {
font-size: 18px;
color: #1f3c88;
}
.card span {
display: block;
margin-top: 10px;
font-weight: bold;
}
footer {
background-color: #1f3c88;
color: white;
padding: 15px;
margin-top: 20px;
}