-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
49 lines (43 loc) · 860 Bytes
/
styles.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
49
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: sans-serif;
background: #383f45;
}
.header {
text-align: center;
text-transform: uppercase;
padding: 32px;
background-color: black;
color: #fff;
border-bottom: 4px solid white;
}
.footer {
text-align: center;
font-size: x-small;
padding: 32px;
background-color: black;
color: #fff;
border-top: 4px solid white;
}
.gallery {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
max-width: 1400px;
gap: 16px;
margin: 0 auto;
padding: 20px 10px;
}
.gallery img {
width: 100%;
max-width: 300px;
max-height: 350px;
object-fit: cover;
border-radius: 5px;
box-shadow: black;
}