-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (41 loc) · 771 Bytes
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@1,300&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Merriweather';
}
header {
padding: 1.5em;
box-shadow: 0 2px 6px 0 rgb(0 0 0 / 15%);
text-align: center;
font-size: 1.5em;
font-weight: 600;
}
.container {
margin-top: 2em;
margin-bottom: 4em;
display: flex;
justify-content:center;
align-items:center;
flex-wrap: wrap;
gap: 1em;
}
.container > div {
width: 250px;
height: 350px;
/* background-color: dodgerblue; */
}
.result img {
object-fit: cover;
height: 100%;
width: 100%;
border-radius: .3em;
box-shadow: 0 2px 6px 0 rgb(0 0 0 / 25%);
}
footer {
padding: 1em;
}
footer p {
text-align: center;
}