-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
42 lines (36 loc) · 761 Bytes
/
styles.css
File metadata and controls
42 lines (36 loc) · 761 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
body {
margin: 0;
font-family: 'Noto -apple-system', BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, Arial;
}
.card-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.card {
width: 300px;
margin: 10px;
padding: 20px;
background-color: #f2f2f2;
border-radius: 5px;
}
.card img {
width: 100%;
border-radius: 5px;
margin-bottom: 10px;
}
.card h2 {
font-size: 18px;
margin-bottom: 10px;
}
.card p {
margin-bottom: 10px;
}
.card button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 3px;
cursor: pointer;
}