-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (41 loc) · 691 Bytes
/
style.css
File metadata and controls
47 lines (41 loc) · 691 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: Arial, sans-serif;
}
.main-card{
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 20px;
}
.card{
width: 350px;
border: 1px solid #000000;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
padding: 20px;
}
.card img{
width: 100%;
height: 200px;
display: block;
border-radius: 8px;
}
.id span, .id{
font-size: 20px;
color: #000000;
margin-top: 10px;
font-weight: bold;
}
.author{
font-size: 23px;
font-weight: bold;
color: #000000;
margin-top: 5px;
}